/* NutriSmart Digital - CSS Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Colors Variables */
:root {
    --primary-green: #27ae60;
    --primary-orange: #f39c12;
    --white: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;
    --border-light: #e0e0e0;
}

/* Header Styles */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo img {
    height: 60px;
    width: auto;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 10px 0;
}

nav ul li a:hover {
    color: var(--primary-green);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 12px;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Main Content Styles */
main {
    min-height: calc(100vh - 160px);
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e7e34 0%, #27ae60 35%, #f39c12 70%, #e67e22 100%);
    background-size: 400% 400%;
    animation: gradientShift 8s ease-in-out infinite;
    color: var(--white);
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease-out 0.2s both;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn {
    display: inline-block;
    padding: 18px 35px;
    background-color: var(--white);
    color: var(--primary-green);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    border: 2px solid var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(0);
    animation: fadeInUp 1s ease-out 0.4s both;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s;
    z-index: 1;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    background-color: transparent;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn span {
    position: relative;
    z-index: 2;
}

.btn-primary {
    background-color: var(--primary-green);
    color: var(--white);
    border-color: var(--primary-green);
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

.btn-primary:hover {
    background-color: rgba(39, 174, 96, 0.1);
    color: var(--white);
    border-color: var(--white);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.4);
}

.btn-secondary {
    background-color: var(--primary-orange);
    color: var(--white);
    border-color: var(--primary-orange);
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.btn-secondary:hover {
    background-color: rgba(243, 156, 18, 0.1);
    color: var(--white);
    border-color: var(--white);
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.4);
}

/* Section Styles */
.section {
    padding: 60px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

/* Grid Layouts */
.grid {
    display: grid;
    gap: 30px;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    align-items: stretch;
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* Card Styles */
.card {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    opacity: 0;
    transform: translateY(50px);
    animation: cardFadeInUp 0.8s ease-out forwards;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.card:nth-child(2) {
    animation-delay: 0.2s;
}

.card:nth-child(3) {
    animation-delay: 0.4s;
}

.card:nth-child(4) {
    animation-delay: 0.6s;
}

@keyframes cardFadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-content {
    padding: 25px;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.card-text {
    color: var(--text-light);
    margin-bottom: 20px;
}

/* Enhanced Product Showcase */
.product-card.enhanced {
    display: flex;
    flex-direction: column;
    position: relative;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    overflow: hidden;
    padding: 0;
    height: 100%;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease-out forwards;
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.product-card.enhanced:nth-child(2) {
    animation-delay: 0.3s;
}

.product-card.enhanced:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

/* Product Badges */
.product-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.product-badge.bestseller {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.product-badge.quick {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

/* Product Image Container */
.product-image-container {
    position: relative;
    padding: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card.enhanced .product-image {
    max-width: 280px;
    max-height: 280px;
    width: auto;
    height: auto;
    border-radius: 15px;
    object-fit: contain;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.product-card.enhanced:hover .product-image {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
}

/* Product Content */
.product-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-content .card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.product-content .card-text {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

/* Product Features */
.product-features {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.feature {
    background: #f8f9fa;
    color: var(--text-dark);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid #e9ecef;
}

/* Product Pricing */
.product-pricing {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.original-price {
    font-size: 0.9rem;
    color: #999;
    text-decoration: line-through;
}

.current-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-green);
}

.discount-badge {
    background: #e74c3c;
    color: white;
    padding: 4px 8px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Enhanced CTA Buttons */
.btn-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    border: none;
    position: relative;
    overflow: hidden;
    margin-top: auto;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: all 0.6s;
}

.btn-cta:hover::before {
    left: 100%;
}

.btn-cta-primary {
    background: linear-gradient(135deg, var(--primary-green), #1e7e34);
    color: white;
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.3);
}

.btn-cta-primary:hover {
    background: linear-gradient(135deg, #1e7e34, var(--primary-green));
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(39, 174, 96, 0.4);
}

.btn-cta-secondary {
    background: linear-gradient(135deg, var(--primary-orange), #e67e22);
    color: white;
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.3);
}

.btn-cta-secondary:hover {
    background: linear-gradient(135deg, #e67e22, var(--primary-orange));
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(243, 156, 18, 0.4);
}

.btn-text {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 3px;
}

.btn-subtitle {
    font-size: 0.8rem;
    opacity: 0.9;
    font-weight: 400;
}

/* Legacy Product Card (for backward compatibility) */
.product-card:not(.enhanced) {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px;
    height: 100%;
    justify-content: space-between;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease-out forwards;
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.product-card:not(.enhanced):nth-child(2) {
    animation-delay: 0.3s;
}

.product-card:not(.enhanced):hover {
    transform: translateY(-8px);
}

.product-card:not(.enhanced) .product-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.product-card:not(.enhanced):hover .product-image {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.product-card:not(.enhanced) .card-title {
    margin-top: 10px;
    margin-bottom: 15px;
}

.product-card:not(.enhanced) .card-text {
    flex-grow: 1;
    margin-bottom: 25px;
}

.product-card:not(.enhanced) .btn {
    margin-top: auto;
}

/* Footer Styles */
footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 40px 0 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-green);
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-green);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
    padding: 6px 10px;
    border-radius: 18px;
    border: 2px solid var(--primary-green);
    background-color: transparent;
    white-space: nowrap;
    min-width: auto;
    flex-shrink: 0;
}

.social-icon:hover {
    background-color: var(--primary-green);
    color: var(--white);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.3);
}

.social-icon:hover .social-icon-circle {
    background-color: var(--white);
    transform: rotate(360deg);
}

.social-icon:hover .social-icon-circle svg {
    fill: var(--primary-green);
    transform: scale(1.1);
}

.social-icon-circle {
    width: 28px;
    height: 28px;
    background-color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.social-icon-circle svg {
    width: 16px;
    height: 16px;
    fill: var(--white);
    transition: fill 0.3s ease;
}

.social-icon-text {
    font-weight: 500;
    font-size: 0.85rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .social-icons {
        gap: 10px;
        flex-direction: column;
    }
    
    .social-icon {
        width: auto;
        justify-content: flex-start;
    }
}

@media (min-width: 769px) {
    .social-icons {
        flex-direction: row;
    }
}

/* Footer social icons (simplified version) */
footer .social-icons {
    gap: 15px;
}

footer .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background-color: var(--primary-green);
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

footer .social-icon:hover {
    background-color: var(--primary-orange);
    transform: translateY(-2px);
}

footer .social-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--white);
}

footer .social-icon-text {
    display: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid #555;
    color: #aaa;
}

/* Landing Page Styles */
.landing-hero {
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.9), rgba(243, 156, 18, 0.9));
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

.product-showcase {
    display: flex;
    align-items: center;
    gap: 50px;
    margin: 50px 0;
}

.product-info {
    flex: 1;
}

.product-cover {
    flex: 1;
    text-align: center;
}

.product-cover img {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green);
    margin: 20px 0;
}

.features {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.feature-list {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
}

.feature-list li {
    padding: 15px 0;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
}

.feature-list li:before {
    content: "✓";
    color: var(--primary-green);
    font-weight: bold;
    margin-right: 15px;
    font-size: 1.2rem;
}

/* Responsive Design */

/* Tablet Landscape */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .container {
        padding: 0 30px;
    }
}

/* Tablet Portrait */
@media (max-width: 768px) {
    .header-container {
        padding: 0 20px;
        height: 70px;
    }
    
    .logo img {
        height: 50px;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    nav ul {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        z-index: 1000;
    }
    
    nav ul.active {
        display: flex;
    }
    
    nav ul li {
        margin: 5px 0;
    }
    
    nav ul li a {
        padding: 15px 0;
        display: block;
        font-size: 1.1rem;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.1;
        margin-bottom: 20px;
    }
    
    .hero p {
        font-size: 1.1rem;
        max-width: 500px;
        margin-bottom: 35px;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .grid-3 {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .card-content {
        padding: 20px;
    }
    
    .product-showcase {
        flex-direction: column;
        text-align: center;
    }
    
    .btn {
        padding: 16px 30px;
        font-size: 1rem;
        min-height: 48px; /* Touch-friendly */
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 25px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .social-icons {
        gap: 12px;
        justify-content: center;
    }
    
    .social-icon {
        min-height: 44px; /* Touch-friendly */
        padding: 8px 12px;
    }
}

/* Mobile Phones */
@media (max-width: 480px) {
    .header-container {
        padding: 0 15px;
        height: 65px;
    }
    
    .logo img {
        height: 45px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
        line-height: 1.1;
        margin-bottom: 15px;
    }
    
    .hero p {
        font-size: 1rem;
        max-width: 350px;
        margin-bottom: 30px;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
        line-height: 1.2;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }
    
    .card {
        margin-bottom: 20px;
    }
    
    .card-content {
        padding: 20px 15px;
    }
    
    .card-title {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .card-text {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }
    
    .product-card {
        padding: 25px 15px;
    }
    
    .product-image {
        max-width: 280px;
    }
    
    .product-cover img {
        max-width: 280px;
    }
    
    .btn {
        padding: 14px 25px;
        font-size: 0.95rem;
        min-height: 44px;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .hero .btn {
        width: auto;
        min-width: 250px;
        margin: 0 10px 15px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .social-icons {
        gap: 10px;
        flex-direction: column;
        align-items: center;
    }
    
    .social-icon {
        width: 100%;
        max-width: 200px;
        justify-content: center;
        min-height: 44px;
    }
    
    .footer-content {
        gap: 20px;
    }
    
    .footer-section {
        margin-bottom: 15px;
    }
    
    nav ul {
        top: 65px;
    }
    
    nav ul li a {
        padding: 16px 0;
        font-size: 1rem;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    /* Improve touch targets */
    .faq-question {
        padding: 18px 20px;
        font-size: 1rem;
    }
    
    .faq-answer-content {
        padding: 18px 20px;
        font-size: 0.95rem;
    }
}

/* Anti-copy styles */
.no-select {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* FAQ Accordion Styles */
.faq-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.faq-item {
    background-color: var(--white);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    background-color: var(--white);
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-green);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: #f8f9fa;
}

.faq-answer-content {
    padding: 20px 25px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Problem/Solution Lists with Icons */
.problem-list, .solution-list, .benefits-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.problem-list li, .solution-list li, .benefits-list li {
    padding: 15px 0;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.problem-list li:before {
    content: "❌";
    margin-right: 15px;
    font-size: 1.2rem;
}

.solution-list li:before, .benefits-list li:before {
    content: "✅";
    color: var(--primary-green);
    margin-right: 15px;
    font-size: 1.2rem;
    font-weight: bold;
}

/* Offer Section */
.offer-section {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-orange));
    color: var(--white);
    padding: 60px 0;
    text-align: center;
    margin: 60px 0;
}

.offer-price {
    font-size: 3rem;
    font-weight: 700;
    margin: 20px 0;
}

.offer-price .old-price {
    text-decoration: line-through;
    opacity: 0.7;
    font-size: 2rem;
}

.offer-price .new-price {
    color: #fff200;
}

.offer-limited {
    font-size: 1.2rem;
    margin: 20px 0;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 15px;
    border-radius: 10px;
    display: inline-block;
}

/* Guarantee Section */
.guarantee-section {
    background-color: #e8f5e8;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin: 40px 0;
    border: 2px solid var(--primary-green);
}

.guarantee-section h3 {
    color: var(--primary-green);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.guarantee-section p {
    font-size: 1.1rem;
    color: var(--text-dark);
}

/* What You'll Receive Section */
.receive-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.receive-item {
    background-color: var(--white);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.receive-item:hover {
    transform: translateY(-5px);
}

.receive-item .icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.receive-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

/* Countdown Timer Styles */
.countdown-container {
    text-align: center;
    margin: 30px 0;
}

.countdown-timer {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 25px;
    border-radius: 15px;
    display: inline-block;
    box-shadow: 0 5px 20px rgba(231, 76, 60, 0.3);
}

.countdown-numbers {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 10px 0;
    font-family: 'Courier New', monospace;
}

/* CTA Button Enhanced */
.btn-cta {
    background: linear-gradient(135deg, var(--primary-green), #2ecc71);
    color: var(--white);
    padding: 20px 40px;
    font-size: 1.3rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(39, 174, 96, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.6);
    background: linear-gradient(135deg, #2ecc71, var(--primary-green));
}

.btn-cta-secondary {
    background: linear-gradient(135deg, var(--primary-orange), #e67e22);
    box-shadow: 0 5px 20px rgba(243, 156, 18, 0.4);
}

.btn-cta-secondary:hover {
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.6);
    background: linear-gradient(135deg, #e67e22, var(--primary-orange));
}

/* Hero Section Enhanced */
.hero-landing {
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.95), rgba(243, 156, 18, 0.95));
    color: var(--white);
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.hero-landing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="white" opacity="0.1"><path d="M0,20 Q250,40 500,20 T1000,20 L1000,100 L0,100 Z"/></svg>') repeat-x bottom;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-landing h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-landing .subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

/* Institutional Pages */
.institutional {
    padding: 40px 0;
}

.institutional-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.institutional-content h2 {
    color: var(--primary-green);
    margin: 30px 0 15px;
    font-size: 1.5rem;
}

.institutional-content h3 {
    color: var(--text-dark);
    margin: 25px 0 10px;
    font-size: 1.2rem;
}

.institutional-content p {
    margin-bottom: 15px;
    color: var(--text-light);
}

.institutional-content ul {
    margin: 15px 0 15px 30px;
    color: var(--text-light);
}

.institutional-content ul li {
    margin-bottom: 8px;
}