/* Removed custom Lato font classes as Google Fonts link handles this */

body {
    font-family: 'Lato', sans-serif; /* Changed to 'Lato' */
    font-weight: 400; /* Lato Regular/Light equivalent */
    font-size:larger;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    line-height: 1.6;
    color: #333;
    background-color: #f0f0f0;
}

p {
    margin-top: 0;
    margin-bottom: 0;
    font-family: 'Lato', sans-serif; /* Ensure paragraphs also use Lato */
    font-weight: 400; /* Default paragraph weight */
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header */
.site-header {
    background-color: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.site-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    font-family: 'Lato', sans-serif; /* Changed to 'Lato' */
    font-weight: 700; /* Lato Bold */
    font-size: 1.5em;
    color: #1654A0;
    display: inline-block;
}

.site-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.site-nav ul li {
    margin-left: 20px;
}

.site-nav ul li a {
    font-family: 'Lato', sans-serif; /* Ensure nav links use Lato */
    font-weight: 400; /* Or 700 if you want them bold */
    text-decoration: none;
    color: #555;
    transition: color 0.3s ease;
}

.site-nav ul li a:hover {
    color: #000;
}

.header-actions {
    display: flex;
    align-items: center;
}

.cart-icon-link {
    color: #333;
    font-size: 1.2em;
    margin-right: 20px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cart-icon-link:hover {
    color: #007bff;
}


.btn-primary,
.btn-secondary { /* Consolidate common button font styles */
    font-family: 'Lato', sans-serif;
    font-weight: 700; /* Buttons often use a bolder weight */
}

.btn-primary {
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.1s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.btn-secondary {
     background-color: #6c757d;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-left: 10px;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: #5a6268;
}

.header-book-btn {
    /* Styles inherited */
}


/* Hero Section */
.hero-section {
    background-color: #f8f9fa;
    padding: 80px 0;
    text-align: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content h1 { /* Site Title */
    font-family: 'Lato', sans-serif; /* Changed to 'Lato' */
    font-weight: 900; /* Lato Black */
    font-size: 4em;
    margin-bottom: 15px;
    max-width: 800px;
    line-height: 1.2;
    background: linear-gradient(to right, #1654A0, #EC2227);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.hero-content p {
    font-family: 'Lato', sans-serif; /* Ensure hero paragraph uses Lato */
    font-weight: 400; /* Regular weight for readability */
    font-size: 1.5em;
    color: #555;
    margin-bottom: 30px;
    max-width: 700px;
}

.hero-book-btn {
    /* Styles inherited */
}


/* Info Section */
.info-section {
    padding: 40px 0;
    text-align: center;
}

.info-section p {
    margin-bottom: 15px;
    /* font-family and font-weight will be inherited from body or p styles */
}

.info-section .warning {
    font-weight: 700; /* Make warning text bold if desired */
    color: #dc3545;
}

/* Features Section */
.features-section {
    background-color: #fff;
    padding: 60px 0;
}

.features-section h2,
.pricing-section h2,
.health-warning-section h2,
.testimonials-section h2,
.cta-section h2 {
    font-family: 'Lato', sans-serif; /* Ensure section titles use Lato */
    font-weight: 900; /* Black weight for titles */
    text-align: center;
    margin-bottom: 40px;
    color: #333;
}


.pricing-grid,
.testimonials-grid,
.footer-columns {
    display: grid;
    gap: 30px;
}

/* Features Grid & Item - Updated for zoom fix */
.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.feature-item {
    text-align: center;
    flex-basis: calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
    box-sizing: border-box;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

.feature-item a {
    display: block;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 15px;
    line-height: 0;
}

.feature-item img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 0px;
    transition: transform 0.3s ease;
}

.feature-item:hover img {
    transform: scale(1.1);
}

.feature-item p {
    margin-top: 0;
    font-family: 'Lato', sans-serif;
    font-weight: 700; /* Bolder text for feature item descriptions */
}


/* Pricing Section */
.pricing-section {
    background-color: #e9ecef;
    padding: 60px 0;
}

.pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.pricing-plan {
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    color: #333;
    font-family: 'Lato', sans-serif; /* Ensure pricing plan text uses Lato */
}

/* Health Warning Section */
.health-warning-section {
    padding: 60px 0;
    text-align: center;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.testimonials-grid {
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.testimonial-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-family: 'Lato', sans-serif; /* Ensure testimonial text uses Lato */
}

.testimonial-item p:first-child {
    font-style: italic;
    margin-bottom: 10px;
}

.testimonial-item p:last-child {
    text-align: right;
    font-weight: 700; /* Bold for the author */
}


/* CTA Section */
.cta-section {
    padding: 60px 0;
    text-align: center;
}

/* Footer */
.site-footer {
    background-color: #343a40;
    color: #fff;
    padding: 40px 0;
    font-family: 'Lato', sans-serif; /* Ensure footer text uses Lato */
}

.footer-columns {
     grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
     gap: 20px;
}

.footer-col h4 {
    margin-bottom: 15px;
    color: #fff;
    font-size: 1.1em;
    font-weight: 700; /* Bold footer headings */
}

.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
    color: #ccc;
    font-weight: 400; /* Regular weight for footer links */
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #fff;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .site-header-inner {
        flex-direction: column;
    }

    .site-nav ul {
        margin-top: 15px;
        justify-content: center;
    }

    .site-nav ul li {
        margin: 0 10px;
    }

    .header-actions {
        margin-top: 15px;
        justify-content: center;
        width: 100%;
    }

     .cart-icon-link {
        margin-right: 10px;
     }

    .hero-content h1 {
        font-size: 3em; /* Still Lato Black, just smaller */
    }

    .hero-content p {
        font-size: 1.2em; /* Still Lato Regular */
    }

    .hero-content {
        padding: 0 15px;
    }

    .footer-columns {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col {
        margin-bottom: 20px;
    }
}

/* Pricing Section Enhancements */
.pricing-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

/* .pricing-section h2 is already styled above */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.pricing-plan {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-plan:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.pricing-plan h3 {
    font-family: 'Lato', sans-serif;
    font-weight: 700; /* Bold for plan titles */
    font-size: 1.8em;
    color: #1654A0;
    margin-bottom: 15px;
}

.pricing-plan .price-tag {
    font-family: 'Lato', sans-serif;
    font-weight: 900; /* Black for price */
    font-size: 2.2em;
    color: #EC2227;
    margin-bottom: 15px;
}

.pricing-plan .plan-description {
    font-size: 0.95em;
    color: #555;
    margin-bottom: 25px;
    min-height: 40px;
    font-weight: 400; /* Regular for description */
}

.pricing-plan .included-services {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
    flex-grow: 1;
}

.pricing-plan .included-services li {
    margin-bottom: 12px;
    color: #444;
    font-size: 0.9em;
    position: relative;
    padding-left: 25px;
    font-weight: 400; /* Regular for service items */
}

.pricing-plan .included-services li::before {
    content: '\2713';
    color: #28a745;
    font-weight: bold; /* Keep checkmark bold */
    position: absolute;
    left: 0;
    top: 0;
}

.pricing-plan .included-services li a {
    color: #444;
    text-decoration: none;
    transition: color 0.3s ease;
}

.pricing-plan .included-services li a:hover {
    color: #1654A0;
    text-decoration: underline;
}

/* .pricing-plan .btn-primary already styled */

.pricing-plan:nth-child(3) .included-services li::before {
    content: '\2022';
    color: #1654A0;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .pricing-plan {
        margin-bottom: 30px;
    }
    .pricing-plan:last-child {
        margin-bottom: 0;
    }
}

/* Header Navigation Dropdown Styles */
.site-nav ul li.dropdown {
    position: relative;
}

.site-nav ul li.dropdown .dropdown-toggle i {
    margin-left: 5px;
    font-size: 0.8em;
    transition: transform 0.3s ease;
}

.site-nav ul li.dropdown.open .dropdown-toggle i {
    transform: rotate(180deg);
}

.site-nav .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    border: 1px solid #eee;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 10px 0;
    margin: 0;
    min-width: 200px;
    z-index: 1000;
    border-radius: 0 0 8px 8px;
}

.site-nav .dropdown-menu li {
    margin: 0;
}

.site-nav .dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: #555;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-family: 'Lato', sans-serif; /* Ensure dropdown links use Lato */
    font-weight: 400; /* Regular weight */
}

.site-nav .dropdown-menu li a:hover {
    background-color: #f0f0f0;
    color: #1654A0;
}

/* Pricing Plan - Best Value Badge */
.pricing-plan.popular {
    border: 2px solid #1654A0;
    position: relative;
    margin-top: -10px;
    padding-top: 40px;
}

.best-value-badge {
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #EC2227;
    color: #fff;
    padding: 5px 15px;
    font-size: 0.8em;
    font-weight: 700; /* Bold badge text */
    font-family: 'Lato', sans-serif;
    border-radius: 15px 15px 0 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 1;
}

/* Responsive adjustments for feature items */
@media (max-width: 992px) {
    .feature-item {
        flex-basis: calc(50% - 15px);
        max-width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .feature-item {
        flex-basis: 100%;
        max-width: 100%;
    }

    .site-nav ul li.dropdown .dropdown-menu {
        left: 0;
        right: 0;
        min-width: auto;
        border-left: none;
        border-right: none;
    }
}

/* Site Logo Link */
.site-logo-link {
    text-decoration: none;
}

/* Articles Section Styles */
.articles-section {
    background-color: #fff;
    padding: 60px 0;
}

.articles-section h2 {
    text-align: left;
    font-size: 2.2em;
    /* font-family and font-weight already set for h2 elements */
    color: #333;
    margin-bottom: 40px;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.article-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.article-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.article-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.article-content {
    padding: 20px;
}

.article-title {
    font-family: 'Lato', sans-serif;
    font-weight: 700; /* Bold for article titles */
    font-size: 1.4em;
    color: #333;
    margin-bottom: 10px;
}

.article-excerpt {
    font-family: 'Lato', sans-serif;
    font-weight: 400; /* Regular for excerpts */
    font-size: 0.95em;
    color: #555;
    line-height: 1.6;
}

.articles-cta {
    text-align: center;
}


/* WhatsApp Floating Button Styles */
.whatsapp-float {
    position: fixed;
    width: 64px;
    height: 64px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.whatsapp-float img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128C7E;
}


/* Adjustments for smaller screens */
@media (max-width: 992px) {
    /* .feature-item responsive styles are already defined above */
}

@media (max-width: 768px) {
    /* .feature-item responsive styles are already defined above */

    .articles-section h2 {
        text-align: center;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 24px;
    }
}
