/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Banner */
.top-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 14px 0;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.top-banner p {
    margin: 0;
}

/* Header */
.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.4rem 0;
}

.logo {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: all 0.3s;
    border-radius: 3px;
}

.main-nav {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.main-nav a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    position: relative;
    padding: 0.5rem 0;
}

.main-nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s;
    border-radius: 2px;
}

.main-nav a:hover {
    color: #667eea;
}

.main-nav a:hover::before {
    width: 100%;
}

.btn-order {
    padding: 0.9rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.btn-order:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
}

/* Hero Section */
.hero-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.4rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.8rem;
    font-weight: 700;
}

.hero-description {
    color: #495057;
    line-height: 1.9;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.hero-cta {
    margin-top: 2.5rem;
}

.btn-hero {
    display: inline-block;
    padding: 1.4rem 3.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.15rem;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.5);
}

.btn-hero:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.6);
}

.hero-image {
    text-align: center;
    position: relative;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    opacity: 0.1;
    z-index: -1;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s;
}

.hero-image:hover img {
    transform: perspective(1000px) rotateY(0deg);
}

/* Product Section */
.product-section {
    padding: 6rem 0;
    background-color: #ffffff;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: #1a1a1a;
    font-weight: 800;
    position: relative;
    padding-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 3px;
}

.product-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.product-images {
    position: sticky;
    top: 120px;
}

.main-image-wrapper {
    width: 100%;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    padding: 2rem;
}

.main-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}

.product-gallery {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
}

.gallery-thumb {
    width: 110px;
    height: 110px;
    border-radius: 12px;
    cursor: pointer;
    border: 4px solid transparent;
    transition: all 0.3s;
    object-fit: cover;
    background-color: #f8f9fa;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.gallery-thumb:hover,
.gallery-thumb.active {
    border-color: #667eea;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.product-details {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.product-header {
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 2rem;
}

.product-name {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
    font-weight: 800;
    line-height: 1.3;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
}

.stars {
    color: #ffc107;
    font-size: 1.3rem;
    letter-spacing: 2px;
}

.rating-text {
    color: #6c757d;
    font-size: 0.95rem;
    font-weight: 500;
}

.product-price {
    margin-top: 1.2rem;
}

.price-current {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-features-box {
    background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border-left: 5px solid #667eea;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.product-features-box h4 {
    font-size: 1.5rem;
    margin-bottom: 1.8rem;
    color: #1a1a1a;
    font-weight: 800;
}

.features-list-main {
    list-style: none;
    padding: 0;
}

.features-list-main li {
    padding: 1rem 0;
    color: #495057;
    border-bottom: 1px solid #dee2e6;
    font-size: 1.05rem;
    line-height: 1.7;
}

.features-list-main li:last-child {
    border-bottom: none;
}

.features-list-main li strong {
    color: #667eea;
    font-weight: 700;
}

.product-specifications {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid #e9ecef;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.product-specifications h4 {
    font-size: 1.5rem;
    margin-bottom: 1.8rem;
    color: #1a1a1a;
    font-weight: 800;
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.spec-item {
    display: flex;
    flex-direction: column;
    padding: 1.2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    transition: all 0.3s;
}

.spec-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.2);
}

.spec-label {
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 600;
}

.spec-value {
    font-size: 1.05rem;
    color: #1a1a1a;
    font-weight: 700;
}

.product-cta-main {
    margin-top: 1.5rem;
}

.btn-primary-large {
    display: block;
    width: 100%;
    padding: 1.5rem 2.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.15rem;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.5);
}

.btn-primary-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.6);
}

.trust-indicators {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #495057;
    font-size: 1rem;
    font-weight: 500;
}

.trust-icon {
    color: #28a745;
    font-weight: bold;
    font-size: 1.4rem;
    background: #e8f5e9;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Benefits Section */
.benefits-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.benefits-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.benefit-card-new {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: all 0.3s;
    border-top: 5px solid #667eea;
    position: relative;
    overflow: hidden;
}

.benefit-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.benefit-card-new:hover::before {
    transform: scaleX(1);
}

.benefit-card-new:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.3);
}

.benefit-icon-new {
    font-size: 4rem;
    margin-bottom: 2rem;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.benefit-card-new h3 {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
    font-weight: 800;
}

.benefit-card-new p {
    color: #495057;
    line-height: 1.9;
    font-size: 1.05rem;
}

/* Usage Section */
.usage-section {
    padding: 6rem 0;
    background-color: #ffffff;
}

.usage-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
}

.usage-text h3 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
    font-weight: 800;
    margin-top: 2.5rem;
}

.usage-text h3:first-child {
    margin-top: 0;
}

.usage-text p {
    font-size: 1.1rem;
    color: #495057;
    line-height: 1.9;
    margin-bottom: 1.8rem;
}

.usage-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.usage-list li {
    padding: 1.2rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
    border-radius: 12px;
    border-left: 5px solid #667eea;
    color: #495057;
    font-size: 1.05rem;
    line-height: 1.7;
    transition: all 0.3s;
}

.usage-list li:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.2);
}

.usage-list li strong {
    color: #667eea;
    font-weight: 700;
}

.usage-image {
    text-align: center;
    position: relative;
}

.usage-image::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    opacity: 0.1;
    z-index: -1;
}

.usage-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

/* Target Section */
.target-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.target-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.target-section .section-title {
    color: #fff;
    position: relative;
    z-index: 1;
}

.target-section .section-title::after {
    background: #fff;
}

.target-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.target-card {
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    padding: 3rem;
    border-radius: 25px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s;
}

.target-card:hover {
    transform: translateY(-12px);
    background-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.target-icon {
    font-size: 4.5rem;
    margin-bottom: 2rem;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.target-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.8rem;
    color: #fff;
    font-weight: 800;
}

.target-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.target-card ul li {
    padding: 1rem 0;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.05rem;
    line-height: 1.7;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 500;
}

.target-card ul li:last-child {
    border-bottom: none;
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background-color: #ffffff;
}

.faq-list {
    max-width: 950px;
    margin: 0 auto;
}

.faq-item {
    background-color: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.faq-item:hover {
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
    transform: translateY(-3px);
}

.faq-item h3 {
    color: #1a1a1a;
    margin-bottom: 1.2rem;
    font-size: 1.4rem;
    font-weight: 800;
}

.faq-item p {
    color: #495057;
    line-height: 1.9;
    font-size: 1.05rem;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-section h2 {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.cta-section .btn-primary-large {
    position: relative;
    z-index: 1;
    background: #ffffff;
    color: #667eea;
    max-width: 500px;
    margin: 0 auto;
}

.cta-section .btn-primary-large:hover {
    background: #f8f9fa;
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.3);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
    color: #fff;
    padding: 5rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-section h3 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section h4 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p {
    color: #adb5bd;
    line-height: 1.9;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 1rem;
}

.footer-section ul li a {
    color: #adb5bd;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1rem;
    font-weight: 500;
}

.footer-section ul li a:hover {
    color: #667eea;
    padding-left: 5px;
}

.footer-section a {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #667eea;
}

.footer-legal {
    border-top: 1px solid #495057;
    padding-top: 3rem;
    margin-bottom: 3rem;
}

.footer-legal h3 {
    color: #fff;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 800;
}

.legal-info {
    margin-bottom: 2.5rem;
}

.legal-info p {
    color: #adb5bd;
    margin-bottom: 0.8rem;
    line-height: 1.9;
    font-size: 0.95rem;
}

.legal-info strong {
    color: #fff;
    font-weight: 700;
}

.health-notice {
    background-color: rgba(102, 126, 234, 0.1);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2.5rem;
    border-left: 5px solid #667eea;
}

.health-notice h4 {
    color: #fff;
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.health-notice p {
    color: #adb5bd;
    line-height: 1.9;
    font-size: 0.95rem;
}

.contact-info-footer {
    margin-bottom: 2.5rem;
}

.contact-info-footer p {
    color: #adb5bd;
    margin-bottom: 0.8rem;
    line-height: 1.9;
    font-size: 0.95rem;
}

.contact-info-footer strong {
    color: #fff;
    font-weight: 700;
}

.contact-info-footer a {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info-footer a:hover {
    color: #667eea;
}

.footer-bottom {
    border-top: 1px solid #495057;
    padding-top: 2.5rem;
    text-align: center;
}

.footer-bottom p {
    color: #adb5bd;
    font-size: 0.95rem;
}

/* Legal Pages */
.legal-page {
    padding: 4rem 0;
    min-height: 60vh;
    background-color: #fff;
}

.legal-page h1 {
    font-size: 2.8rem;
    margin-bottom: 2.5rem;
    color: #1a1a1a;
    font-weight: 800;
}

.legal-page section {
    margin-bottom: 3rem;
}

.legal-page h2 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
    font-weight: 800;
}

.legal-page h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: #1a1a1a;
    font-weight: 700;
}

.legal-page p {
    margin-bottom: 1.2rem;
    color: #495057;
    line-height: 1.9;
    font-size: 1.05rem;
}

.legal-page ul {
    margin-left: 2.5rem;
    margin-bottom: 1.2rem;
}

.legal-page ul li {
    margin-bottom: 0.8rem;
    color: #495057;
    line-height: 1.9;
    font-size: 1.05rem;
}

.legal-page a {
    color: #667eea;
    text-decoration: underline;
    font-weight: 600;
}

.legal-page a:hover {
    color: #764ba2;
}

.withdrawal-form {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2.5rem;
    border-radius: 15px;
    margin: 2.5rem 0;
    border: 2px solid #e9ecef;
}

.withdrawal-form p {
    margin-bottom: 1.2rem;
    color: #495057;
    line-height: 1.9;
}

.withdrawal-form strong {
    color: #1a1a1a;
    font-weight: 700;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .product-showcase {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .product-images {
        position: static;
    }

    .usage-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .specs-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #fff;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 6px 20px rgba(0,0,0,0.15);
        display: none;
        gap: 1.5rem;
    }

    .main-nav.active {
        display: flex;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .benefits-grid-new {
        grid-template-columns: 1fr;
    }

    .target-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .cta-section h2 {
        font-size: 2.2rem;
    }

    .cta-section p {
        font-size: 1.1rem;
    }
}

/* Image Placeholders */
img {
    max-width: 100%;
    height: auto;
}
