* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f5f5f5;
}

/* Header Styles */
.header {
    background: #2c3e50;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.url-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
}

.lock-icon {
    margin-right: 5px;
}

.url {
    font-weight: bold;
}

/* Hero Section */
.hero {
    background: linear-gradient(180deg, #1a5f5f 0%, #2d8a8a 20%, #3a9a7a 50%, #5aaa8a 80%, #7aba8a 100%);
    color: white;
    padding: 0;
    min-height: 100vh;
    position: relative;
}

.hero-header {
    background: #1a5f5f;
    padding: 20px;
    text-align: center;
}

.hero-banner {
    background: white;
    padding: 15px 30px;
    display: inline-block;
    position: relative;
    margin-bottom: 10px;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 0 100%);
}

.hero-brand {
    font-size: 24px;
    font-weight: bold;
    color: #e74c3c;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 1px;
}

.hero-tagline {
    color: white;
    font-size: 16px;
    margin: 0;
    font-weight: normal;
}

.hero-content {
    padding: 30px 20px 100px;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.hero-title {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
    text-transform: uppercase;
    color: #f1c40f;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    text-align: center;
}

.hero-intro {
    font-size: 18px;
    color: white;
    margin-bottom: 30px;
    text-align: center;
}

.hero-benefits {
    list-style: none;
    text-align: left;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hero-benefits li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: white;
    font-size: 16px;
    line-height: 1.5;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
}

.hero-benefits li::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
}

.check-circle {
    background: white;
    color: #27ae60;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    margin-right: 12px;
    flex-shrink: 0;
    border-radius: 50%;
}

.hero-stats-burst {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: #f1c40f;
    padding: 20px 25px;
    z-index: 2;
    clip-path: polygon(50% 0%, 80% 10%, 100% 35%, 85% 50%, 100% 65%, 80% 90%, 50% 100%, 20% 90%, 0% 65%, 15% 50%, 0% 35%, 20% 10%);
    transform: rotate(-5deg);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.hero-stats-main {
    text-align: center;
    margin-bottom: 10px;
}

.hero-stats-percent {
    display: block;
    font-size: 36px;
    font-weight: bold;
    color: #000;
    line-height: 1;
}

.hero-stats-label {
    display: block;
    font-size: 12px;
    color: #000;
    font-weight: bold;
    line-height: 1.2;
    margin-top: 5px;
}

.hero-stats-secondary {
    text-align: center;
    margin-top: 10px;
}

.hero-stats-percent-small {
    display: block;
    font-size: 20px;
    font-weight: bold;
    color: #000;
    line-height: 1;
}

.hero-stats-label-small {
    display: block;
    font-size: 10px;
    color: #000;
    font-weight: bold;
    line-height: 1.2;
    margin-top: 3px;
}

/* Product and Order Form Section */
.product-order-section {
    background: linear-gradient(180deg, #1a5f5f 0%, #2d8a8a 20%, #3a9a7a 50%, #5aaa8a 80%, #7aba8a 100%);
    padding: 40px 20px;
    text-align: center;
    position: relative;
}

.product-order-container {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.product-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
}

.product-image {
    max-width: 300px;
    width: 100%;
    height: auto;
    z-index: 1;
    background: transparent;
}

.product-stats-burst {
    position: absolute;
    top: 0;
    right: 0;
    background: #f1c40f;
    padding: 20px 25px;
    z-index: 2;
    clip-path: polygon(50% 0%, 80% 10%, 100% 35%, 85% 50%, 100% 65%, 80% 90%, 50% 100%, 20% 90%, 0% 65%, 15% 50%, 0% 35%, 20% 10%);
    transform: rotate(-5deg);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.product-stats-main {
    text-align: center;
    margin-bottom: 10px;
}

.product-stats-percent {
    display: block;
    font-size: 36px;
    font-weight: bold;
    color: #e74c3c;
    line-height: 1;
}

.product-stats-label {
    display: block;
    font-size: 12px;
    color: #333;
    font-weight: bold;
    margin-top: 5px;
    text-transform: uppercase;
}

.product-stats-secondary {
    text-align: center;
    border-top: 2px solid #333;
    padding-top: 8px;
    margin-top: 8px;
}

.product-stats-percent-small {
    display: block;
    font-size: 24px;
    font-weight: bold;
    color: #e74c3c;
    line-height: 1;
}

.product-stats-label-small {
    display: block;
    font-size: 10px;
    color: #333;
    font-weight: bold;
    margin-top: 3px;
}

/* For images with white backgrounds - makes them blend with page background */
.product-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    z-index: 0;
}

/* Statistics Section */
.stats-section {
    background: white;
    padding: 40px 20px;
    text-align: center;
}

.section-title {
    font-size: 24px;
    font-weight: bold;
    color: #e74c3c;
    margin-bottom: 30px;
    text-transform: uppercase;
    line-height: 1.3;
    text-align: center;
}

.stats-container {
    max-width: 600px;
    margin: 0 auto 40px;
}

.stat-item {
    margin-bottom: 25px;
}

.stat-label {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
    text-align: left;
}

.stat-bar {
    background: #ecf0f1;
    height: 40px;
    position: relative;
    overflow: hidden;
}

.stat-fill {
    background: #1a5f5f;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
}

.effectiveness-badge {
    background: #1a5f5f;
    padding: 40px 20px;
    margin-top: 30px;
}

.effectiveness-circle {
    width: 200px;
    height: 200px;
    border: 5px solid #2d8a8a;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    background: #1a5f5f;
}

.effectiveness-percent {
    font-size: 48px;
    font-weight: bold;
    color: white;
}

.effectiveness-text {
    font-size: 18px;
    color: white;
    text-transform: uppercase;
}

/* Discount Box (now part of product-order-section) */
.discount-box {
    background: #3a9a7a;
    border: 3px dashed white;
    padding: 30px 20px;
    width: 100%;
    position: relative;
}

.discount-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    position: relative;
}

.discount-badge {
    background: #e74c3c;
    padding: 15px 20px;
    position: relative;
    flex: 1;
    margin-right: 15px;
    clip-path: polygon(0 0, 90% 0, 95% 20%, 100% 40%, 95% 60%, 100% 80%, 95% 100%, 0 100%);
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.promo-text {
    color: white;
    font-size: 14px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.discount-btn {
    background: #f1c40f;
    color: #333;
    border: none;
    padding: 8px 15px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 12px;
    margin-bottom: 8px;
    cursor: pointer;
}

.urgency-text {
    color: white;
    font-size: 12px;
    display: block;
}

.discount-percent {
    font-size: 72px;
    font-weight: bold;
    color: #f1c40f;
    line-height: 1;
    text-align: right;
}

.pricing-info {
    margin: 20px 0;
    color: #f1c40f;
    font-size: 18px;
    text-align: center;
}

.original-price {
    margin-bottom: 10px;
}

.strikethrough {
    text-decoration: line-through;
    opacity: 0.7;
}

.highlight-price {
    font-size: 24px;
    font-weight: bold;
}

.form-instruction {
    color: white;
    margin: 20px 0;
    font-size: 16px;
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.order-form input {
    padding: 15px;
    border: none;
    font-size: 16px;
    background: white;
}

.order-form input::placeholder {
    color: #999;
}

.order-btn {
    background: #e74c3c;
    color: white;
    border: none;
    border-radius: 12px;
    padding: 18px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    width: 100%;
}

.order-btn:hover {
    background: #c0392b;
}

/* Diabetes Awareness Section */
.diabetes-awareness-section {
    background: linear-gradient(180deg, #e8f5f5 0%, #f5e8e8 50%, #f0e8e8 100%);
    padding: 40px 20px;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.sugar-graphic {
    position: relative;
    min-height: 400px;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.sugar-packets {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    z-index: 2;
}

.sugar-packet {
    width: 80px;
    height: 100px;
    background: #2d8a8a;
    position: relative;
    transform: rotate(-15deg);
    clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
}

.sugar-packet.right {
    transform: rotate(15deg);
}

.sugar-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #e8f5f5;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
}

.sugar-crystals {
    position: absolute;
    top: 120px;
    left: 0;
    right: 0;
    height: 200px;
    z-index: 1;
}

.crystal {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #f5c2c2;
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    animation: fall 3s infinite;
}

.crystal:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
}

.crystal:nth-child(2) {
    left: 25%;
    animation-delay: 0.5s;
}

.crystal:nth-child(3) {
    left: 40%;
    animation-delay: 1s;
}

.crystal:nth-child(4) {
    left: 55%;
    animation-delay: 1.5s;
}

.crystal:nth-child(5) {
    left: 70%;
    animation-delay: 2s;
}

.crystal:nth-child(6) {
    left: 85%;
    animation-delay: 2.5s;
}

@keyframes fall {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(200px) rotate(360deg);
        opacity: 0;
    }
}

.glucose-meter {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.meter-body {
    width: 120px;
    height: 80px;
    background: #2d8a8a;
    position: relative;
    clip-path: polygon(10% 0, 90% 0, 100% 100%, 0 100%);
}

.meter-screen {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 30px;
    background: #95a5a6;
}

.test-strip {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 20px;
    background: #95a5a6;
}

.blood-drop {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 15px;
    height: 20px;
    background: #e74c3c;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.awareness-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.diabetes-stats-text {
    font-size: 24px;
    font-weight: bold;
    color: #1a5f5f;
    margin-bottom: 30px;
    line-height: 1.4;
}

.killer-headline {
    font-size: 28px;
    font-weight: bold;
    color: #e74c3c;
    text-transform: uppercase;
    line-height: 1.3;
    margin: 0;
}

/* Responsive adjustments for product-order section */
@media (max-width: 768px) {
    .product-image {
        max-width: 250px;
    }
    
    .product-stats-burst {
        top: -100px;
        right: -10px;
        padding: 15px 20px;
        transform: rotate(-8deg);
    }
    
    .product-stats-percent {
        font-size: 28px;
    }
    
    .product-stats-percent-small {
        font-size: 18px;
    }
    
    .product-stats-label {
        font-size: 10px;
    }
    
    .product-stats-label-small {
        font-size: 8px;
    }
    
    .discount-percent {
        font-size: 56px;
    }
    
    .product-order-container {
        gap: 20px;
    }
    
    .diabetes-awareness-section {
        min-height: 500px;
        padding: 30px 15px;
    }
    
    .sugar-graphic {
        min-height: 300px;
    }
    
    .sugar-packet {
        width: 60px;
        height: 75px;
    }
    
    .sugar-text {
        font-size: 18px;
    }
    
    .diabetes-stats-text {
        font-size: 20px;
    }
    
    .killer-headline {
        font-size: 22px;
    }
}

/* Benefits Section */
.benefits-section {
    background: #e8e8e8;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 200px solid transparent;
    border-right: 200px solid transparent;
    border-top: 100px solid #e8f5f5;
    z-index: 0;
}

.benefits-headline {
    font-size: 28px;
    font-weight: bold;
    color: #1a5f5f;
    margin-bottom: 30px;
    text-transform: uppercase;
    line-height: 1.3;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.benefits-container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.benefits-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.benefits-product {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0;
    position: relative;
    z-index: 1;
}

.benefits-product-image {
    max-width: 250px;
    width: 100%;
    height: auto;
    background: transparent;
}

.benefits-bottom {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
}

.benefit-box {
    background: #2d8a8a;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-radius: 8px;
}

.benefit-number {
    font-size: 64px;
    font-weight: bold;
    color: #f1c40f;
    min-width: 80px;
    text-align: center;
    line-height: 1;
}

.benefit-box p {
    color: white;
    font-size: 16px;
    font-weight: bold;
    flex: 1;
    margin: 0;
}

/* Ingredients Section */
.ingredients-section {
    background: #c6e8e4;
    padding: 40px 20px;
}

.ingredients-wrapper {
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}

.ingredients-product-image {
    display: block;
    max-width: 180px;
    width: 100%;
    height: auto;
    margin: 0 auto 20px;
}

.ingredients-title {
    font-size: 32px;
    font-weight: bold;
    color: #0f6a63;
    margin-bottom: 30px;
    line-height: 1.2;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.ingredient-item {
    background: white;
    border: 6px solid #b7dff5;
    padding: 16px;
}

.ingredient-image {
    width: 100%;
    height: 140px;
    background: #e8f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #1a5f5f;
    margin-bottom: 10px;
    font-size: 16px;
}

.ingredient-text {
    color: #144f4b;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
}

/* Materials Section */
.materials-section {
    background: white;
    padding: 40px 20px;
    text-align: center;
}

.materials-title {
    font-size: 24px;
    font-weight: bold;
    color: #1a5f5f;
    margin-bottom: 40px;
    text-transform: uppercase;
    line-height: 1.3;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.materials-timeline {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    padding: 0 20px;
}

.materials-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #2d8a8a;
    border-left: 2px dashed #2d8a8a;
    transform: translateX(-50%);
    z-index: 0;
}

.materials-items {
    position: relative;
    z-index: 1;
}

.material-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
    position: relative;
    background: white;
    border: 2px solid #2d8a8a;
    padding: 20px;
    border-radius: 4px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.material-number {
    width: 40px;
    height: 40px;
    background: #2d8a8a;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    border-radius: 50%;
    flex-shrink: 0;
}

.material-item p {
    color: #1a5f5f;
    font-size: 16px;
    font-weight: bold;
    margin: 0;
    text-align: left;
    flex: 1;
}

.materials-doctor-card {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.materials-doctor-photo {
    max-width: 300px;
    width: 100%;
    height: auto;
    display: block;
}

/* Ingredients Section */
.ingredients-section {
    background: #c6e8e4;
    padding: 40px 20px;
}

.ingredients-wrapper {
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}

.ingredients-product-image {
    display: block;
    max-width: 180px;
    width: 100%;
    height: auto;
    margin: 0 auto 20px;
}

.ingredients-title {
    font-size: 32px;
    font-weight: bold;
    color: #0f6a63;
    margin-bottom: 30px;
    line-height: 1.2;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.ingredient-item {
    background: white;
    border: 6px solid #b7dff5;
    padding: 16px;
}

.ingredient-image {
    width: 100%;
    height: 140px;
    background: #e8f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #1a5f5f;
    margin-bottom: 10px;
    font-size: 16px;
}

.ingredient-text {
    color: #144f4b;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
}

/* Health Support and Order Section */
.health-support-order-section {
    background: white;
    padding: 0;
}

.health-support-wrapper {
    background: white;
    padding: 40px 20px;
}

.support-list {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
}

.support-list li {
    padding: 15px 0;
    font-size: 16px;
    font-weight: bold;
    color: #1a5f5f;
    border-bottom: 1px solid #ecf0f1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.support-list li:last-child {
    border-bottom: none;
}

.support-check {
    background: #f1c40f;
    color: #000;
    width: 24px;
    height: 24px;
    min-width: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
    margin-right: 10px;
    font-size: 16px;
    flex-shrink: 0;
}

/* Certification Placeholder */
.certification-placeholder {
    background: #1a5f5f;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.certificate-box {
    background: white;
    padding: 30px;
    border: 3px solid #2d8a8a;
    max-width: 500px;
    width: 100%;
    position: relative;
}

.certificate-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.qr-code-placeholder {
    width: 100px;
    height: 100px;
    background: #ecf0f1;
    border: 2px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #666;
    font-weight: bold;
}

.certificate-text {
    color: #666;
    font-size: 14px;
    text-align: center;
    margin: 0;
}

/* Herbal GlucoNax Order Section */
.herbal-order-section {
    background: #e8f5f5;
    padding: 40px 20px;
}

.herbal-order-banner {
    background: #1a5f5f;
    padding: 40px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.herbal-order-banner::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(45, 138, 138, 0.2);
    border-radius: 50%;
    z-index: 0;
}

.herbal-order-title {
    color: white;
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.3;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.herbal-order-btn {
    background: #e74c3c;
    color: white;
    border: none;
    border-radius: 12px;
    padding: 18px 50px;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    border-radius: 12px;
}

.herbal-order-btn:hover {
    background: #c0392b;
}

.herbal-order-price {
    color: white;
    font-size: 18px;
    margin: 0;
    position: relative;
    z-index: 1;
}

.herbal-price-amount {
    font-size: 32px;
    font-weight: bold;
}

.herbal-currency {
    font-size: 18px;
}

.herbal-product-display {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    background: white;
    margin: 20px auto 0;
    max-width: 400px;
    border-radius: 8px;
}

.herbal-product-image {
    max-width: 250px;
    width: 100%;
    height: auto;
    background: transparent;
}

/* Expert Section */
.expert-section {
    background: #1a5f5f;
    color: white;
    padding: 40px 20px;
}

.section-title-white {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
    text-transform: uppercase;
    line-height: 1.3;
    text-align: center;
}

.expert-quote {
    max-width: 700px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.8;
}

.expert-quote p {
    margin-bottom: 20px;
}

.expert-attribution {
    font-style: italic;
    margin-top: 20px;
    text-align: right;
}

/* Testimonial Section */
.testimonial-section {
    background: linear-gradient(135deg, #f0f9f9 0%, #ffffff 30%, #ffffff 70%, #f0f9f9 100%);
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
}

.testimonial-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: #e8f5f5;
    border-radius: 50%;
    opacity: 0.6;
    z-index: 0;
}

.testimonial-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: #e8f5f5;
    border-radius: 50%;
    opacity: 0.6;
    z-index: 0;
}

.testimonial-heading {
    font-size: 28px;
    font-weight: bold;
    color: #1a5f5f;
    margin-bottom: 30px;
    text-transform: uppercase;
    line-height: 1.3;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.testimonial-slider {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.testimonial-slider-container {
    position: relative;
    overflow: hidden;
    min-height: 400px;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    touch-action: pan-y;
}

.testimonial-slide {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.testimonial-slide.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.testimonial-card {
    background: white;
    padding: 30px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 8px;
    position: relative;
    z-index: 1;
}

.testimonial-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-avatar-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid #e8f5f5;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    color: #333;
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 8px 0;
}

.satisfaction-bar {
    width: 200px;
    height: 6px;
    background: linear-gradient(to right, #e74c3c, #f1c40f, #2d8a8a);
    border-radius: 3px;
}

.testimonial-text {
    color: #666;
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}

.testimonial-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

.pagination-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: white;
    border: 2px solid #1a5f5f;
}

.pagination-dot.active {
    background: #1a5f5f;
    border-color: #1a5f5f;
}

/* Diabetes Complications Section */
.complications-section {
    background: linear-gradient(180deg, #e8f5f5 0%, #f0f5f5 50%, #f5f5f5 100%);
    padding: 40px 20px;
}

.complications-title {
    font-size: 28px;
    font-weight: bold;
    color: #1a5f5f;
    margin-bottom: 40px;
    text-transform: uppercase;
    line-height: 1.3;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.complications-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    max-width: 600px;
    margin: 0 auto;
}

.complication-item {
    border: 2px solid #ff9999;
    padding: 0;
    background: #faf8f5;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    overflow: hidden;
}

.complication-image-wrapper {
    width: 100%;
    position: relative;
}

.complication-image {
    width: 100%;
    height: 200px;
    background: #e8e5e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #666;
    font-size: 14px;
    text-align: center;
    padding: 10px;
}

.complication-title-main {
    color: #e74c3c;
    font-size: 24px;
    margin: 15px 20px 5px;
    text-transform: uppercase;
    font-weight: bold;
    line-height: 1.2;
}

.complication-title-sub {
    color: #e74c3c;
    font-size: 20px;
    margin: 0 20px 10px;
    text-transform: uppercase;
    font-weight: bold;
    line-height: 1.2;
}

.complication-desc {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 20px 20px;
    font-weight: normal;
}

/* Prevention and Technology Section (inside Complications) */
.prevention-technology-wrapper {
    margin-top: 40px;
    background: #f5f5f5;
    padding: 0;
}

.prevention-banner {
    background: #1a5f5f;
    background-image: repeating-linear-gradient(
        45deg,
        #1a5f5f,
        #1a5f5f 10px,
        #155050 10px,
        #155050 20px
    );
    padding: 40px 20px;
    text-align: center;
}

.prevention-banner-text {
    color: white;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.4;
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.microscope-section {
    background: linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 100%);
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
}

.microscope-container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.microscope-placeholder {
    width: 200px;
    height: 250px;
    background: #d0d0d0;
    border: 2px solid #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #666;
    font-size: 14px;
    text-align: center;
    z-index: 2;
    position: relative;
}

.molecular-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(45, 138, 138, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(45, 138, 138, 0.1) 0%, transparent 50%);
    opacity: 0.3;
    z-index: 1;
}

.tech-content-wrapper {
    background: #f5f5f5;
    padding: 40px 20px;
}

.tech-content-card {
    max-width: 700px;
    margin: 0 auto 30px;
    background: white;
    padding: 30px;
    border: 3px dashed #ff69b4;
    border-radius: 8px;
}

.tech-text {
    color: #1a5f5f;
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}

.effectiveness-section {
    background: #1a5f5f;
    padding: 60px 20px;
    text-align: center;
}

.effectiveness-circle-large {
    width: 250px;
    height: 250px;
    border: 5px solid #2d8a8a;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    background: #1a5f5f;
}

.effectiveness-100 {
    font-size: 64px;
    font-weight: bold;
    color: white;
    line-height: 1;
    margin-bottom: 10px;
}

.effectiveness-label {
    font-size: 20px;
    color: white;
    text-transform: uppercase;
    font-weight: bold;
}

/* Results Intro Banner */
.results-intro-banner {
    background: #1a5f5f;
    padding: 30px 20px;
    text-align: center;
}

.results-intro-text {
    color: white;
    font-size: 20px;
    font-weight: bold;
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Results Section */
.results-section {
    background: white;
    padding: 40px 20px;
    text-align: center;
}

.results-title {
    font-size: 24px;
    font-weight: bold;
    color: #e74c3c;
    margin-bottom: 30px;
    text-transform: uppercase;
    line-height: 1.3;
}

.results-stats {
    max-width: 600px;
    margin: 0 auto;
}

.result-stat-item {
    margin-bottom: 25px;
}

.result-stat-label {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
    text-align: left;
}

.result-stat-bar {
    background: #ecf0f1;
    height: 40px;
    position: relative;
    overflow: hidden;
}

.result-stat-fill {
    background: #1a5f5f;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
}

/* Easy Control Banner */
.easy-control-banner {
    background: #1a5f5f;
    padding: 30px 20px;
    text-align: center;
}

.easy-control-text {
    color: white;
    font-size: 18px;
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Responsive adjustments for Prevention and Technology Section */
@media (max-width: 768px) {
    .prevention-banner-text {
        font-size: 20px;
    }
    
    .microscope-placeholder {
        width: 150px;
        height: 200px;
    }
    
    .effectiveness-circle-large {
        width: 200px;
        height: 200px;
    }
    
    .effectiveness-100 {
        font-size: 48px;
    }
    
    .effectiveness-label {
        font-size: 16px;
    }
    
    .tech-content-card {
        padding: 20px;
    }
}

/* Risk Factors Section */
.risk-factors-section {
    background: white;
    padding: 40px 20px;
}

.risk-factors-section .section-title-red {
    margin-bottom: 30px;
}

.risk-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
    margin-top: 0;
}

.risk-card {
    background: white;
    padding: 25px;
    border: 1px solid #ecf0f1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.risk-icon {
    font-size: 48px;
    min-width: 80px;
    width: 80px;
    height: 80px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
    z-index: 2;
}

.risk-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(45, 138, 138, 0.2);
    border-radius: 50%;
    z-index: 0;
}

.risk-icon::after {
    content: '';
    position: absolute;
    width: 70%;
    height: 70%;
    background: rgba(45, 138, 138, 0.3);
    border-radius: 50%;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.risk-list {
    list-style: none;
    width: 100%;
    margin: 0;
    padding: 0;
    text-align: left;
}

.risk-list li {
    padding: 8px 0;
    color: #333;
    font-size: 16px;
    font-weight: normal;
    display: flex;
    align-items: center;
    gap: 8px;
}

.risk-list li::before {
    content: '✓';
    color: #666;
    font-weight: bold;
    font-size: 18px;
    flex-shrink: 0;
}

/* Stats Intro Section */
.stats-intro-section {
    background: linear-gradient(135deg, #e8f5f5 0%, #f5f5f5 100%);
    padding: 40px 20px;
    text-align: center;
}

.stats-intro-text {
    font-size: 24px;
    font-weight: bold;
    color: #1a5f5f;
    margin-bottom: 20px;
    line-height: 1.4;
}

.stats-intro-subtitle {
    font-size: 20px;
    color: #1a5f5f;
    font-weight: bold;
    background: #1a5f5f;
    color: white;
    padding: 20px;
    max-width: 600px;
    margin: 0 auto;
}

/* Registration Section */
.registration-section {
    background: linear-gradient(180deg, #1a5f5f 0%, #2d8a8a 30%, #3a9a7a 60%, #5aaa8a 100%);
    padding: 40px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.registration-content {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.register-heading {
    font-size: 28px;
    font-weight: bold;
    color: white;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.register-btn {
    background: #e74c3c;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-bottom: 30px;
    width: 100%;
    max-width: 400px;
}

.register-btn:hover {
    background: #c0392b;
}

.register-btn:active {
    transform: scale(0.98);
}

.register-quote {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.register-price {
    color: #ffffff;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    background: rgba(231, 76, 60, 0.8);
    padding: 10px 20px;
    border-radius: 6px;
    display: inline-block;
}

.registration-product-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.registration-product-image {
    position: relative;
    display: inline-block;
}

.registration-product-image img {
    max-width: 200px;
    height: auto;
    z-index: 1;
    position: relative;
}

.registration-stats-burst {
    position: absolute;
    top: -20px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: #f1c40f;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transform: rotate(-15deg);
}

.registration-stats-main {
    text-align: center;
    margin-bottom: 5px;
}

.registration-stats-percent {
    display: block;
    font-size: 24px;
    font-weight: bold;
    color: #000;
    line-height: 1;
}

.registration-stats-label {
    display: block;
    font-size: 10px;
    color: #000;
    font-weight: bold;
    line-height: 1.2;
    margin-top: 2px;
}

.registration-stats-secondary {
    text-align: center;
    margin-top: 5px;
}

.registration-stats-percent-small {
    display: block;
    font-size: 16px;
    font-weight: bold;
    color: #000;
    line-height: 1;
}

.registration-stats-label-small {
    display: block;
    font-size: 8px;
    color: #000;
    font-weight: bold;
    line-height: 1.2;
    margin-top: 2px;
}

/* Final Order Section */
.final-order-section {
    background: linear-gradient(135deg, #f0f9f9 0%, #ffffff 30%, #ffffff 70%, #f0f9f9 100%);
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
}

.final-order-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: #e8f5f5;
    border-radius: 50%;
    opacity: 0.6;
    z-index: 0;
}

.final-order-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: #e8f5f5;
    border-radius: 50%;
    opacity: 0.6;
    z-index: 0;
}

.final-order-box {
    background: #1a5f5f;
    border: 3px dashed white;
    border-radius: 8px;
    padding: 30px 20px;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.final-product-image {
    text-align: center;
    margin-bottom: 20px;
}

.final-product-image img {
    max-width: 150px;
    height: auto;
}

.final-discount-info {
    margin-bottom: 25px;
}

.special-promotions-badge {
    background: #e74c3c;
    padding: 15px;
    border-radius: 8px;
    position: relative;
    margin-bottom: 15px;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
}

.promotions-text {
    color: white;
    font-size: 14px;
    text-transform: lowercase;
    display: block;
    margin-bottom: 8px;
}

.discount-up-badge {
    background: #f1c40f;
    color: #000;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 5px;
}

.only-today-text {
    color: white;
    font-size: 12px;
    margin-top: 5px;
}

.discount-percent-large {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 48px;
    font-weight: bold;
    color: #f1c40f;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.final-pricing {
    text-align: left;
    margin-top: 15px;
}

.final-pricing .original-price {
    color: white;
    font-size: 14px;
    margin-bottom: 5px;
}

.final-pricing .strikethrough {
    text-decoration: line-through;
    color: #ccc;
}

.final-pricing .current-price {
    color: #f1c40f;
    font-size: 18px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.final-pricing .price-highlight {
    font-size: 24px;
    color: #f1c40f;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.final-order-form-wrapper {
    margin-top: 20px;
}

.final-order-form-wrapper .form-instruction {
    color: white;
    font-size: 14px;
    margin-bottom: 15px;
    text-align: left;
}

.final-order-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.final-order-form input {
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 12px 15px;
    font-size: 16px;
    color: #333;
    width: 100%;
    box-sizing: border-box;
}

.final-order-form input::placeholder {
    color: #999;
}

.final-order-form input:focus {
    outline: none;
    border-color: #1a5f5f;
}

.final-order-btn {
    background: #e74c3c;
    color: white;
    border: none;
    border-radius: 12px;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
}

.final-order-btn:hover {
    background: #c0392b;
}

.final-order-btn:active {
    transform: scale(0.98);
}

/* Footer */
.footer {
    background: #1a5f5f;
    color: white;
    padding: 20px;
    text-align: center;
    font-size: 16px;
}

/* Responsive Design */
@media (min-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .ingredients-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .complications-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .risk-cards {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 42px;
    }
    
    .complications-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
    
    .risk-cards {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

