/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #333;
    line-height: 1.5;
    background-color: #f9f9f9;
    /* Light background to make header stand out if white */
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Header Container */
.header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    /* subtle shadow for depth */
    width: 100%;
    height: 80px;
    /* Adjust height as needed based on logo size */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.container {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 20px;
    /* Slight padding for smaller screens */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo img {
    height: 50px;
    /* Adjust based on actual logo aspect ratio */
    width: auto;
    display: block;
}

/* Navigation */
.nav-list {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: #1a1a1a;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link:hover {
    color: #00875A;
    /* Assuming a green hover color matching the button, or standard blue/brand color */
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    border: 1px solid #eee;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-radius: 6px;
    min-width: 150px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
    z-index: 100;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 8px 16px;
    color: #333;
    font-size: 14px;
    transition: background-color 0.1s;
}

.dropdown-menu li a:hover {
    background-color: #f5f5f5;
    color: #00875A;
}

.arrow-icon {
    transition: transform 0.2s ease;
}

.dropdown:hover .arrow-icon {
    transform: rotate(180deg);
}

/* Mobile Menu Toggle (Hidden on Desktop) */
.mobile-menu-toggle {
    display: none;
}

/* Mobile Menu Buttons (Hidden on Desktop) */
.mobile-menu-buttons {
    display: none;
}

/* WhatsApp Button */
.whatsapp-btn {
    background-color: #009865;
    /* Specific green from screenshot/brand */
    color: #ffffff;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 50px;
    /* Pill shape */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, transform 0.1s ease;
    font-size: 16px;
    text-decoration: none;
}

.whatsapp-btn:hover {
    background-color: #007e53;
    transform: translateY(-1px);
}

.whatsapp-btn:active {
    transform: translateY(0);
}

/* Telegram Button */
.telegram-btn {
    background-color: #0088cc;
    /* Telegram Blue */
    color: #ffffff;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, transform 0.1s ease;
    font-size: 16px;
    text-decoration: none;
    margin-left: 10px;
    /* Space between buttons */
}

.telegram-btn:hover {
    background-color: #0077b5;
    transform: translateY(-1px);
}

.telegram-btn:active {
    transform: translateY(0);
}

/* Contact Form Styles */
.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: 'Urbanist', sans-serif;
    font-weight: 700;
    margin-bottom: 8px;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #333;
    transition: border-color 0.3s;
    box-sizing: border-box;
    /* Ensure padding aligns */
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #0F2F76;
    outline: none;
}

.submit-btn {
    background-color: #0F2F76;
    color: #fff;
    font-family: 'Urbanist', sans-serif;
    font-weight: 700;
    font-size: 18px;
    padding: 14px 30px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #0a235c;
}

/* Hero Section */
.hero {
    background-color: #480dd817;
    /* Specified background color */
    height: 530px;
    /* Fixed height */
    width: 100%;
    display: flex;
    align-items: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 607px 607px;
    /* Specific column widths */
    gap: 20px;
    /* Reduced gap */
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    width: 607px;
    /* specific width */
    max-width: none;
    /* Remove max-width constraint */
}

.hero-title {
    font-family: 'Urbanist', sans-serif;
    font-size: 50px;
    color: #0F2F76;
    font-weight: 900;
    /* Changed to 900 */
    line-height: 1.3;
    /* Increased line-height */
    margin-bottom: 24px;
}

.hero-description {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #000000;
    /* Changed to Black */
    line-height: 1.6;
    margin-bottom: 32px;
    width: 580px;
    /* Specific width */
}

.hero-btn {
    background-color: #00935E;
    /* Changed to #00935E */
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 500;
    width: 250px;
    /* Specific width */
    height: 60px;
    /* Specific height */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* Center text */
    gap: 8px;
    border-radius: 50px;
    transition: background-color 0.2s ease;
}

.hero-btn:hover {
    background-color: #007a4e;
}

/* Social Proof */
.social-proof {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
    /* Reduced space closer to button */
}

.avatars {
    display: flex;
}

.avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #fff;
    /* White border for overlap effect */
    margin-left: -12px;
}

.avatars img:first-child {
    margin-left: 0;
}

.proof-text p {
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    color: #7A7A7A;
    /* Changed to #7A7A7A */
    line-height: 1.2;
    font-weight: 500;
    opacity: 1;
    /* Removed opacity since we have a specific color */
}

/* Hero Media - Video Placeholder */
.hero-media {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    overflow: hidden;
    /* box-shadow removed */
}

.video-placeholder img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive */
@media (max-width: 900px) {
    .container {
        flex-direction: column;
        gap: 20px;
        padding: 0 20px;
        width: 100%;
        /* Ensure full width buffer */
        box-sizing: border-box;
    }

    .header .container {
        flex-direction: row;
        /* Keep header items in row */
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        /* Hidden by default */
        width: 280px;
        height: 100vh;
        background-color: #ffffff;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        transition: right 0.3s ease;
        padding-top: 80px;
        display: block !important;
        /* Override display: none */
    }

    .nav.active {
        right: 0;
        /* Slide in */
    }

    .nav-list {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 0 30px;
    }

    .nav-list li {
        width: 100%;
        text-align: left;
    }

    .dropdown-menu {
        position: static;
        /* Stack naturally */
        box-shadow: none;
        border: none;
        padding-left: 15px;
        display: none;
        /* Hide submenu by default */
        opacity: 1;
        transform: none;
        visibility: visible;
        pointer-events: auto;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .cta-button {
        display: none;
        /* Hide CTA in header on mobile if cluttered, or move to menu */
    }

    /* Mobile Menu Toggle */
    .mobile-menu-toggle {
        display: block;
        cursor: pointer;
        z-index: 1001;
    }

    .bar {
        width: 25px;
        height: 3px;
        background-color: #0F2F76;
        margin: 5px 0;
        transition: 0.3s;
        border-radius: 2px;
    }

    /* Hamburger Animation */
    .mobile-menu-toggle.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .mobile-menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    /* Backdrop */
    .menu-backdrop {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        display: none;
    }

    .menu-backdrop.active {
        display: block;
    }

    /* Hero Mobile Refinements */
    .hero {
        height: auto;
        padding: 40px 0 60px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .hero-content {
        width: 100%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* Center align all children */
    }

    .hero-title {
        font-size: 32px;
        /* Optimized for mobile */
        line-height: 1.25;
        margin-bottom: 16px;
        width: 100%;
    }

    .hero-description {
        width: 100%;
        font-size: 16px;
        margin-bottom: 24px;
        padding: 0 10px;
    }

    .hero-btn {
        width: 100%;
        /* Full width button */
        max-width: 320px;
        height: 56px;
    }

    .social-proof {
        justify-content: center;
        flex-direction: column;
        gap: 10px;
    }

    .hero-media {
        width: 100%;
        max-width: 400px;
        /* Limit video width on mobile */
        margin: 0 auto;
    }

    .video-container {
        border-radius: 8px;
        /* Slightly smaller radius */
    }

    /* Pricing Mobile */
    .pricing-header {
        max-width: 100%;
        padding: 0 20px;
    }

    .pricing-title {
        font-size: 32px;
    }

    .pricing-cards {
        display: flex;
        flex-direction: column;
        /* Stack vertically */
        gap: 20px;
        /* Add gap between cards */
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        grid-template-columns: unset;
        /* Reset grid */
    }

    .pricing-card {
        width: 100%;
        height: auto;
        /* Allow content to dictate height */
        min-height: auto;
        /* Reset any min-height */
        margin-bottom: 0;
        /* Gap handles spacing */
    }

    /* Studies Mobile */
    .studies-container {
        display: flex;
        flex-direction: column;
        /* Stack vertically */
        gap: 40px;
        text-align: center;
        grid-template-columns: unset;
        /* Reset grid */
    }

    .studies-content {
        order: 1;
        /* First */
        text-align: center;
        width: 100%;
    }

    .studies-title {
        font-size: 28px;
        width: 100%;
        height: auto;
        margin-bottom: 20px;
    }

    .studies-text {
        width: 100%;
        height: auto;
        text-align: center;
        /* Center text for mobile structure request */
    }

    .studies-image {
        order: 2;
        /* Second */
        width: 100%;
    }

    .studies-image img {
        width: 100%;
        height: auto;
        /* Maintain aspect ratio */
    }
}

/* Video Container */
.video-container {
    position: relative;
    width: 100%;
    height: auto;
    /* Let image dictate height */
    cursor: pointer;
    display: block;
    border-radius: 12px;
    overflow: hidden;
    background-color: #000;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.video-container:hover .video-thumbnail {
    transform: scale(1.02);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.video-container:hover .play-button {
    background-color: #00935E;
    border-color: #00935E;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-container iframe {
    width: 100%;
    height: 100%;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background-color: #ffffff;
}

.pricing-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-header {
    text-align: center;
    max-width: 800px;
    margin-bottom: 60px;
}

.pricing-title {
    font-family: 'Urbanist', sans-serif;
    font-size: 40px;
    /* Updated to 40px */
    color: #0F2F76;
    font-weight: 900;
    /* Bold (900) */
    line-height: 1.3;
    margin-bottom: 24px;
}

.pricing-description {
    font-family: 'Roboto', sans-serif;
    /* Roboto Sans Serif */
    font-size: 16px;
    /* 16px */
    color: #555;
    line-height: 1.6;
}

.pricing-description .highlight {
    color: #00935E;
    font-weight: 700;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    /* Reduced gap from 30px to make cards wider/closer */
    width: 100%;
}

.pricing-card {
    border-radius: 20px;
    padding: 30px 20px;
    /* Reduced padding from 40px 30px */
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Border removed from general card */
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    height: 480px;
    /* Fixed height as requested */
    width: 100%;
    /* Ensure it spans the grid cell */
}

/* Hover animation removed */
/*.pricing-card:hover {
    transform: translateY(-5px);
}*/

.purple-card {
    background-color: #480dd82b;
    /* Specified color */
    background-image: none;
}

.grey-card {
    background-color: #7979792b;
    /* Specified color */
    position: relative;
    box-shadow: none;
    /* Border added to last pack only */
    border-style: solid;
    border-width: 2px 2px 2px 2px;
    border-color: #0F2F76;
}

.card-title {
    font-family: 'Urbanist', sans-serif;
    font-size: 23px;
    /* 23px */
    color: #0F2F76;
    font-weight: 800;
    margin-bottom: 12px;
    /* Reduced margin */
}

.price {
    font-family: 'Urbanist', sans-serif;
    font-size: 50px;
    /* 50px */
    color: #0F2F76;
    font-weight: 800;
    margin-bottom: 20px;
    /* Reduced margin */
}

.card-btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px;
    font-family: 'Urbanist', sans-serif;
    /* Urbanist */
    font-size: 20px;
    /* 20px */
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 24px;
    /* Reduced margin */
    transition: all 0.2s ease;
    min-width: 160px;
    color: #000000 !important;
    /* Force Black text */
    border: 1px solid #000000 !important;
    /* Force Black border */
    box-shadow: none !important;
    /* No shadow */
}

.white-btn {
    background-color: #ffffff;
}

.white-btn:hover {
    background-color: #69727d;
    /* Specified hover color */
    border: 1px solid #69727d !important;
    /* Effectively no border (matches bg) or removed */
    color: #ffffff !important;
    /* Assuming white text on dark grey hover for readability */
    transform: translateY(-2px);
}

.green-btn {
    background-color: #00935E;
    color: #ffffff !important;
    /* White text for green button */
    border: 1px solid #00935E !important;
    /* Green border to match or remove black border */
}

.green-btn:hover {
    background-color: #007a4e;
    transform: translateY(-2px);
    border: 1px solid #007a4e !important;
}

.features-list {
    text-align: left;
    width: fit-content;
    margin: 0 auto;
    padding-left: 0;
}

.features-list li {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 500;
    /* Made more bold (was 400) */
    color: #333;
    margin-bottom: 8px;
    /* Reduced margin */
    display: flex;
    align-items: flex-start;
    gap: 12px;
    /* Increased gap */
    line-height: 1.4;
}

.check-icon {
    font-weight: 900;
    color: #000;
    min-width: 16px;
    /* Ensure alignment */
    display: flex;
    align-items: center;
    /* Center icon vertically with text first line if needed */
    margin-top: 2px;
    /* Slight adjustment for alignment */
}

.check-icon svg path {
    stroke-width: 3px;
    /* Make icon bolder */
}

/* Responsive Pricing */
/* Responsive Pricing handled in main media query block */

/* Studies Section */
.studies-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.studies-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Image left, Text right */
    gap: 60px;
    align-items: center;
}

.studies-image img {
    width: 540px;
    height: 540px;
    object-fit: cover;
    border-radius: 0;
}

.studies-content {
    text-align: left;
}

.studies-title {
    font-family: 'Urbanist', sans-serif;
    font-size: 30px;
    /* Requested 30px */
    font-weight: 900;
    /* Black/Extra Bold title */
    color: #0F2F76;
    /* Updated Color */
    margin-bottom: 24px;
    line-height: 1.3;
    width: 540px;
    /* Fixed width */
    height: 117px;
    /* Requested height */
    display: block;
    max-width: 100%;
}

.studies-text {
    font-family: 'Inter', sans-serif;
    /* Requested Inter */
    font-size: 16px;
    /* Requested 16px */
    font-weight: 400;
    /* Normal weight */
    color: #000000;
    /* Black text */
    line-height: 1.6;
    width: 540px;
    /* Fixed width */
    height: 393px;
    /* Requested height */
    max-width: 100%;
}

.studies-text p {
    margin-bottom: 30px;
    /* Increased spacing */
}

.study-point {
    margin-bottom: 30px;
    /* Increased spacing */
}

.study-point strong {
    color: #000000;
    /* Black color */
    font-weight: 800;
    /* Extra bold */
}

.study-point a {
    color: #00935E;
    /* Link color matching theme */
    text-decoration: underline;
}

/* Studies Mobile handled in main media query block */

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: #F5F0FF;
    /* Light purple background */
}

.faq-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    /* Reduced horizontal gap (was 30px) */
    max-width: 1250px;
    /* Requested 1250px (Standard Site Width) */
    margin: 0 auto;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
    /* Reverted vertical gap to 10px per user clarification */
}

.faq-item {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: none !important;
    /* No Shadow */
    overflow: hidden;
    width: 550px;
    max-width: 100%;
    border: 1px solid #d5d8dc;
}

.faq-question {
    height: 58px;
    padding: 0 20px;
    display: flex;
    justify-content: flex-start !important;
    /* Icon Left */
    gap: 15px;
    align-items: center;
    cursor: pointer;
    font-family: 'Inter', sans-serif !important;
    font-weight: 500;
    font-size: 16px !important;
    /* 16px Font */
    color: #1f2124 !important;
    transition: background-color 0.3s;
    text-align: left !important;
    flex-direction: row !important;
}

.faq-question:hover {
    background-color: #fafafa;
}

.faq-icon {
    font-size: 24px;
    font-weight: 400;
    color: #000;
    width: 20px;
    text-align: center;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease, border 0.3s ease;
    background-color: #fff;
    padding: 0 20px;
    border-top: 1px solid transparent;
}

.faq-answer p {
    font-family: 'Inter', sans-serif !important;
    font-size: 16px !important;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    margin-top: 20px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 20px;
    border-top: 1px solid #E5E7EB;
    /* Separator line */
}

.faq-item.active .faq-icon {
    transform: none;
    /* No rotation, text change handled by JS */
}

@media (max-width: 900px) {
    .faq-container {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 100%;
        padding: 0 10px;
        /* Reduced padding to stretch boxes */
    }

    .faq-item {
        width: 100%;
        /* Full width on mobile */
    }

    .faq-question {
        padding: 0 15px;
        /* Reduced padding */
        height: auto;
        /* Allow auto height for multi-line questions */
        min-height: 50px;
        font-size: 14px !important;
        /* Set to 14px */
        font-family: 'Inter', sans-serif !important;
        /* Ensure Inter font */
    }

    .faq-answer {
        padding: 0 15px;
        /* Reduced padding */
    }

    .faq-answer p {
        font-size: 14px !important;
        /* Smaller text for mobile */
        margin-bottom: 15px;
        margin-top: 15px;
    }
}

/* Cache Buster: 2026-02-15T16:22:00 */

/* Text Page Styles */
.text-page-section {
    padding: 80px 0;
    background-color: #fff;
    min-height: 60vh;
    /* Ensure it takes up space */
}

.text-page-container {
    max-width: 800px;
    /* Optimal reading width */
    margin: 0 auto;
    padding: 0 20px;
    font-family: 'Inter', sans-serif;
    color: #333;
}

.text-page-container h1 {
    font-family: 'Urbanist', sans-serif;
    font-size: 42px;
    color: #0F2F76;
    margin-bottom: 40px;
    font-weight: 800;
    line-height: 1.2;
}

.text-page-container h2 {
    font-family: 'Urbanist', sans-serif;
    font-size: 28px;
    color: #0F2F76;
    margin-top: 50px;
    margin-bottom: 20px;
    font-weight: 700;
}

.text-page-container h3 {
    font-family: 'Urbanist', sans-serif;
    font-size: 22px;
    color: #222;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 700;
}

.text-page-container p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #555;
}

.text-page-container ul {
    list-style-type: disc;
    padding-left: 25px;
    margin-bottom: 24px;
}

.text-page-container li {
    margin-bottom: 12px;
    line-height: 1.6;
    color: #555;
}

.text-page-container strong {
    color: #333;
    font-weight: 700;
}

/* Mobile Override */
@media (max-width: 900px) {
    .pricing-cards {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: unset !important;
        width: 100% !important;
        max-width: 400px;
        margin: 0 auto;
        gap: 20px;
    }

    .pricing-card {
        width: 100% !important;
        height: auto !important;
        min-height: auto !important;
        margin-bottom: 0 !important;
    }

    /* Reduce gap between Pricing and Studies */
    .pricing {
        padding-bottom: 30px !important;
    }

    .studies-section {
        padding-top: 30px !important;
    }

    .studies-container {
        display: flex !important;
        flex-direction: column !important;
        align-items: center;
        /* Center items (image) */
        gap: 0 !important;
        /* Remove grid gap, handle with margins */
    }

    .studies-content {
        order: 1 !important;
        width: 100%;
        text-align: left !important;
        margin-bottom: 200px;
        /* Increased from 140px */
    }

    .pricing-title {
        font-size: 30px !important;
        /* Set to 30px as requested */
    }

    /* Mobile Menu Buttons */
    .mobile-menu-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        padding: 20px 30px;
        margin-top: 20px;
        border-top: 1px solid #eee;
    }

    .mobile-social-btn {
        display: flex !important;
        justify-content: center;
        width: 100%;
        text-align: center;
    }

    .studies-title {
        margin-bottom: 50px !important;
        /* Increased from 30px */
    }

    .studies-text {
        text-align: left !important;
        /* Force left align */
    }

    /* Ensure Header layout is correct for "Beside Logo" */
    .header .container {
        justify-content: space-between !important;
        /* Force spread */
    }

    /* Ensure Hamburger is visible */
    .mobile-menu-toggle {
        display: block !important;
        margin-left: auto;
        /* Push to right if not using space-between, but space-between handles it */
    }

    .studies-image {
        order: 2 !important;
        width: 100%;
        display: flex;
        justify-content: center;
        /* Center image */
    }

    .studies-image img {
        width: 100% !important;
        max-width: 500px;
        /* Prevent huge images on larger mobile */
        height: auto !important;
    }
}

/* Footer Styles */
.site-footer {
    padding: 40px 0;
    background-color: #fff;
    text-align: center;
    border-top: 1px solid #f0f0f0;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.trustpilot-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border: 1px solid #00b67a;
    /* Trustpilot Green Border */
    border-radius: 4px;
    text-decoration: none;
    color: #1f2124;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    gap: 5px;
    transition: background-color 0.2s;
}

.trustpilot-box:hover {
    background-color: #f9f9f9;
}

.tp-star {
    color: #00b67a;
    /* Trustpilot Green Star */
    font-size: 18px;
    line-height: 1;
}

.trustpilot-box strong {
    font-weight: 700;
    margin-left: 2px;
}

.copyright-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #555;
    margin: 0;
}

/* Scroll to Top Button */
#scrollToTopBtn {
    display: none;
    /* Hidden by default */
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: #00935E;
    /* Theme Green */
    color: white;
    cursor: pointer;
    width: 45px;
    height: 45px;
    border-radius: 4px;
    /* Square with slight radius like image */
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

#scrollToTopBtn:hover {
    background-color: #007a4e;
}