/* ===================================== */
/* 1. Global Styles & Resets           */
/* ===================================== */
html {
    box-sizing: border-box;
    scroll-behavior: smooth;
}
*, *::before, *::after {
    box-sizing: inherit;
    margin: 0;
    padding: 0;
}

:root {
    /* Updated Color Palette for starsbooster.io-like feel with light background */
    --primary-color: #3182CE; /* A vibrant, deep blue for main accents (similar to starsbooster's primary) */
    --secondary-color: #63B3ED; /* A lighter blue for secondary accents/hover */
    --accent-color: #F6AD55; /* An orange/gold for highlights (e.g., stars, special elements) */

    --background-light: #F7FAFC; /* Very light grey/off-white for main body background */
    --background-card-light: #FFFFFF; /* Pure White for cards/sections, lighter than main background */

    --heading-color: #000000; /* PURE BLACK for headings on light backgrounds */
    --text-color: #000000; /* PURE BLACK for body text on light backgrounds */
    --text-lighter-color: #333333; /* Dark grey, almost black, for subtle text/descriptions (ensuring contrast) */

    --border-color-light: #EDF2F7; /* Very light grey for subtle borders */
    --input-bg-light: #FFFFFF; /* Pure white for input fields */

    /* Hero Section Specific Colors (dark background) */
    --hero-bg-color: #1A202C; /* Very dark almost black for hero background */
    --hero-text-color: #FFFFFF; /* White for hero text */
    --hero-subtitle-color: #E2E8F0; /* Off-white for hero subtitle */


    /* Font sizes for consistency (adjusted for better responsiveness) */
    --font-size-base: 1rem;       /* 16px */
    --font-size-lg: 1.125rem;     /* 18px */
    --font-size-xl: 1.25rem;      /* 20px */
    --font-size-2xl: 1.5rem;      /* 24px */
    --font-size-3xl: 1.875rem;    /* 30px */
    --font-size-4xl: 2.25rem;     /* 36px */
    --font-size-5xl: 3rem;        /* 48px */
    --font-size-6xl: 4rem;        /* 64px */
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--background-light);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease-in-out;
}
a:hover {
    color: var(--secondary-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 1rem;
    color: var(--heading-color);
    font-weight: 700;
    line-height: 1.25;
}
h1 { font-size: var(--font-size-5xl); line-height: 1.1; }
h2 { font-size: var(--font-size-4xl); }
h3 { font-size: var(--font-size-2xl); }
h4 { font-size: var(--font-size-xl); }
h5 { font-size: var(--font-size-lg); }
h6 { font-size: var(--font-size-base); }

p {
    margin-bottom: 1.2rem;
    color: var(--text-color);
}

.section-description {
    font-size: var(--font-size-lg);
    max-width: 800px;
    margin: 0 auto 3rem auto;
    color: var(--text-lighter-color);
}

/* ===================================== */
/* 2. Layout & Utility Classes         */
/* ===================================== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2.5rem; /* Consistent padding */
}

.section-padding {
    padding: 7rem 0;
}

.bg-light {
    background-color: var(--background-card-light);
}

.bg-primary {
    background-color: var(--primary-color);
    color: #fff;
}
.bg-primary h2, .bg-primary p {
    color: #fff;
}

.text-center {
    text-align: center;
}

/* ===================================== */
/* 3. Navigation Bar (.main-nav)       */
/* ===================================== */
.main-nav {
    background: var(--background-card-light);
    padding: 0.8rem 0; /* Slightly reduced padding */
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background 0.3s ease-in-out;
}

.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Styles for the text-based logo */
.main-nav .logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem; /* Reduced logo size */
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.5px;
    transition: color 0.3s ease-in-out;
}

.main-nav .logo-text:hover {
    color: var(--secondary-color);
}


.main-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
}

.main-nav ul li {
    margin-left: 2rem; /* Reduced spacing between menu items */
}

.main-nav ul li a {
    color: var(--text-color);
    font-weight: 600;
    font-size: var(--font-size-base); /* Slightly smaller font for compactness */
    position: relative; /* Changed to relative */
    padding-bottom: 0.2rem; /* Reduced padding */
    display: block; /* Ensures the ::after element takes its own line */
}

.main-nav ul li a::after {
    content: '';
    display: block; /* Ensure it takes full width below the text */
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    margin-top: 5px; /* Added margin to separate from text */
    transition: width 0.3s ease-in-out;
}
.main-nav ul li a:hover::after {
    width: 100%;
}

.nav-btn {
    background-color: var(--primary-color);
    color: #FFFFFF;
    padding: 0.7rem 1.6rem; /* Slightly smaller padding for button */
    border-radius: 50px;
    font-weight: 700;
    font-size: var(--font-size-base) !important;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}
/* Removed hover styles for nav-btn as requested */
/*
.nav-btn:hover {
    background-color: var(--secondary-color);
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}
*/
.nav-btn::after {
    display: none;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none; /* Hidden by default on desktop */
    font-size: 1.8rem; /* Slightly smaller toggle icon */
    color: var(--heading-color);
    cursor: pointer;
    z-index: 1001;
}

/* ===================================== */
/* 4. Hero Section (.hero-section)     */
/* ===================================== */
.hero-section {
    background: var(--hero-bg-color);
    color: var(--hero-text-color);
    text-align: center;
    padding: 11rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: fadeIn 1.2s ease-out;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: var(--font-size-6xl);
    margin-bottom: 1.8rem;
    color: var(--hero-text-color);
    text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
}

.hero-section .hero-subtitle {
    font-size: var(--font-size-2xl);
    margin-bottom: 3rem;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    color: var(--hero-subtitle-color);
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

/* ===================================== */
/* 5. Call to Action Button (.btn)     */
/* ===================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.1rem 3rem;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    font-weight: 700;
    font-size: var(--font-size-xl);
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    text-decoration: none;
    white-space: nowrap;
}

.btn i {
    margin-left: 0.8rem;
    font-size: 1.2em;
}

.btn-primary-hero {
    background: var(--primary-color);
    color: #fff;
}
.btn-primary-hero:hover {
    background: var(--secondary-color);
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 25px rgba(0,0,0,0.25);
}

.btn-secondary-hero {
    background: none;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}
.btn-secondary-hero:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #fff;
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 25px rgba(0,0,0,0.25);
}

.btn-cta {
    background: var(--primary-color);
    color: #FFFFFF;
}
.btn-cta:hover {
    background: var(--secondary-color);
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 25px rgba(0,0,0,0.25);
}


/* ===================================== */
/* 6. Main Content Sections Styles     */
/* ===================================== */

/* Grid Layouts for Service Items, Why Us Points, Testimonials */
.service-items, .why-us-points, .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.8rem;
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
}

/* 3D Shape and Animation for Cards */
.service-item, .point, .testimonial-item, .faq-item, .process-step {
    background-color: var(--background-card-light);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.4s ease-out, box-shadow 0.4s ease-out;
    border: 1px solid var(--border-color-light);
    transform-style: preserve-3d;
    position: relative;
}

/* Card hover effect - Enhanced 3D feel */
.service-item:hover, .point:hover, .testimonial-item:hover, .faq-item:hover, .process-step:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15),
                0 0 0 5px rgba(49, 130, 206, 0.1);
    z-index: 10;
}


.service-item h3, .point h3, .faq-item h3 {
    color: var(--heading-color);
    margin-bottom: 1rem;
    font-size: var(--font-size-xl);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Circular background for icons */
.service-item h3 .icon-primary,
.point h3 .icon-primary {
    color: #fff;
    background-color: var(--primary-color);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: var(--font-size-2xl);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}


.platform-heading {
    margin-top: 4rem;
    margin-bottom: 2rem;
    font-size: var(--font-size-3xl);
    color: var(--heading-color);
    font-weight: 700;
}

.platform-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    padding: 0;
    margin-bottom: 4rem;
}

.platform-list li {
    background-color: #E9ECEF;
    color: var(--text-color);
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    font-size: var(--font-size-base);
    font-weight: 600;
    transition: background-color 0.3s ease-in-out, transform 0.2s ease-out;
    cursor: default;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.platform-list li i {
    margin-right: 0.6rem;
    color: var(--primary-color);
}

/* Font Awesome 5 flag icons */
.fa-flag-usa:before { content: "\f7ad"; }
.fa-flag-gb:before { content: "\f7ae"; }
.fa-flag-ca:before { content: "\f787"; }
.fa-flag-au:before { content: "\f788"; }
.fa-flag-fr:before { content: "\f793"; }
.fa-flag-es:before { content: "\f78e"; }
.fa-flag-sg:before { content: "\f7a6"; }
.fa-flag-ae:before { content: "\f77b"; }


.platform-list li:hover {
    background-color: #DEE2E6;
    transform: translateY(-4px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Testimonial specific styles */
.testimonial-item {
    text-align: left;
    background: var(--background-card-light);
    border: 1px solid var(--border-color-light);
}

.testimonial-item .quote {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    line-height: 1.8;
    font-size: var(--font-size-lg);
}

.testimonial-item .author {
    font-weight: 700;
    color: var(--heading-color);
    font-size: var(--font-size-base);
    margin-top: 1.2rem;
    display: block;
}

/* FAQ specific styles */
.faq-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    background-color: var(--background-card-light);
    padding: 2rem 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    border: 1px solid var(--border-color-light);
    position: relative;
    overflow: hidden;
}
.faq-item h3 {
    font-size: var(--font-size-lg);
    color: var(--heading-color);
    margin-bottom: 0;
    position: relative;
    padding-right: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.faq-item h3::after {
    content: '\2b';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: var(--font-size-xl);
    color: var(--primary-color);
    transition: transform 0.3s ease-in-out;
}
.faq-item.active h3::after {
    content: '\2212';
    transform: translateY(-50%) rotate(180deg);
}

.faq-item p {
    margin-top: 1rem;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out, opacity 0.4s ease-in-out;
    color: var(--text-color);
}

.faq-item.active p {
    max-height: 200px;
    opacity: 1;
}

/* Our Process Section Styles */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3.5rem;
}

.process-step {
    background-color: var(--background-card-light);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-align: center;
    border: 1px solid var(--border-color-light);
}

.process-step .step-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.process-step .step-icon i {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 900;
}

.process-step h3 {
    color: var(--heading-color);
    font-size: var(--font-size-xl);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.process-step p {
    color: var(--text-color);
    font-size: var(--font-size-base);
    margin-bottom: 0;
}


/* Contact Form styles */
.contact-form-container {
    background-color: var(--background-card-light);
    padding: 3.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 700px;
    margin: 3rem auto;
    text-align: left;
    border: 1px solid var(--border-color-light);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: var(--heading-color);
    font-size: var(--font-size-base);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid var(--border-color-light);
    border-radius: 8px;
    font-size: var(--font-size-base);
    box-sizing: border-box;
    transition: border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    background-color: var(--input-bg-light);
    color: var(--text-color);
}
.form-group input[type="text"]::placeholder,
.form-group input[type="email"]::placeholder,
.form-group textarea::placeholder {
    color: #A0AEC0;
    opacity: 1;
}


.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(49, 130, 206, 0.2);
    outline: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-info {
    margin-top: 2rem;
    font-size: var(--font-size-lg);
    color: var(--text-color);
    line-height: 1.6;
}
.contact-info a {
    font-weight: bold;
    color: var(--primary-color);
}
.contact-info a i {
    margin-left: 0.6rem;
}

/* ===================================== */
/* 7. Footer                             */
/* ===================================== */
footer {
    background: #E2E8F0;
    color: var(--text-color);
    text-align: center;
    padding: 3rem 0;
    font-size: var(--font-size-base);
    border-top: 1px solid var(--border-color-light);
}
footer p {
    margin-bottom: 0;
    color: var(--text-color);
}
footer p i {
    margin-left: 0.5rem;
    color: var(--accent-color);
}

.footer-links {
    margin-bottom: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}
.footer-links a {
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease-in-out;
}
.footer-links a:hover {
    color: var(--primary-color);
}

.social-links {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}
.social-links a {
    color: #fff;
    background-color: var(--text-lighter-color);
    font-size: var(--font-size-xl);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 0.8rem;
    transition: background-color 0.3s ease-in-out, transform 0.3s ease-out;
}
.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

/* ===================================== */
/* 8. Animations                       */
/* ===================================== */
.fade-in {
    opacity: 0; /* Changed initial opacity to 0 */
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================== */
/* 9. Responsive Design (Media Queries)*/
/* ===================================== */

/* Desktop Styles (Default - above 992px) */
.nav-list-wrapper {
    display: block;
}
.main-nav ul {
    flex-direction: row;
}
.menu-toggle {
    display: none;
}

/* Large tablets and small desktops (e.g., iPad Pro portrait, some laptops) */
@media (max-width: 1024px) {
    .hero-section h1 {
        font-size: var(--font-size-5xl);
    }
    .hero-section .hero-subtitle {
        font-size: var(--font-size-xl);
    }
    .main-nav ul li {
        margin-left: 1.5rem;
    }
    .main-nav ul li a {
        font-size: 0.95rem;
    }
    .main-nav .logo-text {
        font-size: 1.6rem;
    }
}

/* Tablets (iPad landscape, larger phones) */
@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .main-nav .logo-text {
        font-size: 1.5rem;
    }

    .menu-toggle {
        display: block;
    }

    .nav-list-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 280px;
        height: 100vh;
        background-color: var(--background-card-light);
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: right 0.4s ease-in-out;
        z-index: 999;
        padding-top: 5rem;
        overflow-y: auto;
    }

    .nav-list-wrapper.active {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 0;
        width: 100%;
        padding: 0 1.5rem;
    }
    .main-nav ul li {
        margin: 0.7rem 0;
        width: 100%;
        border-bottom: 1px solid var(--border-color-light);
        padding-bottom: 0.7rem;
    }
    .main-nav ul li:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }
    .main-nav ul li a {
        display: block;
        padding: 0.4rem 0;
        font-size: var(--font-size-lg);
        color: var(--heading-color);
        /* Ensure ::after is also handled for mobile */
        position: relative;
    }
    .main-nav ul li a::after {
        background-color: var(--primary-color);
        position: static; /* Important for mobile to remove absolute positioning */
        margin-top: 5px; /* Adjust as needed */
    }
    .nav-btn {
        margin-top: 1.2rem;
        width: 100%;
        max-width: none;
        font-size: var(--font-size-base) !important;
        padding: 0.6rem 1.2rem;
    }


    .hero-section {
        padding: 7rem 0;
        min-height: 65vh;
    }
    .hero-section h1 {
        font-size: var(--font-size-3xl);
        margin-bottom: 1.5rem;
    }
    .hero-section .hero-subtitle {
        font-size: var(--font-size-lg);
        margin-bottom: 2.5rem;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        padding: 1rem 2rem;
        font-size: var(--font-size-lg);
    }
    .btn i { margin-left: 0.6rem; }

    .section-padding {
        padding: 4rem 0;
    }
    h2 {
        font-size: var(--font-size-2xl);
    }
    h3 {
        font-size: var(--font-size-xl);
    }
    .section-description {
        font-size: var(--font-size-base);
        margin-bottom: 2rem;
    }

    .service-items, .why-us-points, .testimonial-grid, .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .platform-list {
        gap: 0.8rem;
        margin-bottom: 3rem;
    }
    .platform-list li {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    .platform-list li i { margin-right: 0.4rem; }

    .faq-items {
        gap: 1rem;
    }
    .faq-item h3 {
        font-size: var(--font-size-base);
        padding-right: 30px;
    }
    .faq-item h3::after { font-size: var(--font-size-lg); }

    .contact-form-container {
        padding: 2rem;
    }
    .form-group label {
        font-size: 0.95rem;
    }
    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group textarea {
        padding: 1rem;
    }
    .contact-info {
        font-size: var(--font-size-base);
        margin-top: 1.5rem;
    }

    footer {
        padding: 2rem 0;
        font-size: 0.85rem;
    }
    .social-links a {
        width: 40px;
        height: 40px;
        font-size: var(--font-size-lg);
        margin: 0 0.5rem;
    }
}

/* Smaller Phones (e.g., iPhone SE, older Androids) */
@media (max-width: 480px) {
    .main-nav .logo-text {
        font-size: 1.3rem;
    }

    .menu-toggle {
        font-size: 1.6rem;
    }

    .nav-list-wrapper {
        width: 80%;
        max-width: 250px;
        padding-top: 4rem;
    }

    .main-nav ul li {
        margin: 0.6rem 0;
        padding-bottom: 0.6rem;
    }
    .main-nav ul li a {
        padding: 0.3rem 0;
        font-size: var(--font-size-base);
    }
    .nav-btn {
        margin-top: 1rem;
        padding: 0.5rem 1rem;
        font-size: 0.9rem !important;
    }


    .hero-section {
        padding: 5rem 0;
        min-height: 60vh;
    }
    .hero-section h1 {
        font-size: var(--font-size-2xl);
        margin-bottom: 1rem;
    }
    .hero-section .hero-subtitle {
        font-size: var(--font-size-base);
        margin-bottom: 2rem;
    }
    .btn {
        font-size: var(--font-size-base);
        padding: 0.8rem 1.5rem;
        max-width: 280px;
    }

    .section-padding {
        padding: 3rem 0;
    }
    h2 {
        font-size: var(--font-size-xl);
    }
    h3 {
        font-size: var(--font-size-lg);
    }
    .section-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .service-item, .point, .testimonial-item, .faq-item, .process-step {
        padding: 1.8rem 1.5rem;
    }

    .service-item h3 .icon-primary,
    .point h3 .icon-primary {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: var(--font-size-xl);
    }

    .platform-list li {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .contact-form-container {
        padding: 1.5rem;
    }
    .form-group {
        margin-bottom: 1.5rem;
    }
    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group textarea {
        padding: 0.8rem;
    }
    .contact-info {
        font-size: var(--font-size-base);
        margin-top: 1.5rem;
    }

    footer {
        padding: 2rem 0;
        font-size: 0.85rem;
    }
    .social-links a {
        width: 40px;
        height: 40px;
        font-size: var(--font-size-lg);
        margin: 0 0.5rem;
    }
}