/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #11d2ba;
    --secondary-color: #20B2AA;
    --text-dark: #2C3E50;
    --text-light: #5A6C7D;
    --bg-light: #F8F9FA;
    --white: #FFFFFF;
    --gradient-start: #11d2ba;
    --gradient-end: #20B2AA;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: var(--white);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-with-bg {
    background: linear-gradient(135deg, #11d2ba 0%, #20B2AA 100%);
    position: relative;
    overflow: hidden;
}

.header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.header-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 206, 209, 0.8) 0%, rgba(32, 178, 170, 0.8) 100%);
    z-index: 2;
}

.header-with-bg .container {
    position: relative;
    z-index: 3;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: block;
    line-height: 0;
}

.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 400;
    font-size: 14px;
    transition: color 0.3s ease;
    position: relative;
}

.nav a:hover {
    color: var(--primary-color);
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    width: 40px;
    height: 32px;
    position: relative;
}

.hamburger-icon,
.close-icon {
    width: 28px;
    height: 28px;
    color: var(--primary-color);
    stroke: var(--primary-color);
    transition: all 0.3s ease;
}

.close-icon {
    display: none;
}

.mobile-menu-toggle.active .hamburger-icon {
    display: none;
}

.mobile-menu-toggle.active .close-icon {
    display: block;
}

.mobile-menu-toggle:hover {
    background: rgba(0, 206, 209, 0.1);
    border-radius: 8px;
}

/* Dropdown Navigation */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.dropdown-arrow {
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    min-width: 220px;
    padding: 15px 0;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-top: 15px;
    z-index: 1000;
}

.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--white);
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 10px;
}

.nav-dropdown-menu a {
    display: block;
    padding: 12px 25px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
}

.nav-dropdown-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 206, 209, 0.1) 0%, transparent 100%);
    transition: width 0.3s ease;
    z-index: -1;
}

.nav-dropdown-menu a:hover {
    color: var(--primary-color);
    padding-left: 30px;
}

.nav-dropdown-menu a:hover::before {
    width: 100%;
}

/* Hero Section */
.hero {
    background: url('images/123-01.jpg') no-repeat center right;
    background-size: contain;
    background-color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 40%, rgba(255, 255, 255, 0.7) 60%, transparent 100%);
    z-index: 0;
}

.hero-content {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    max-width: 600px;
}

.hero-text h1 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 13px;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-align: justify;
}

.cta-button {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: var(--white);
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 20px;
    text-decoration: none;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 206, 209, 0.3);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 206, 209, 0.2));
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 206, 209, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.feature-card a {
    text-decoration: none;
}

.feature-card a:hover h3 {
    color: var(--primary-color);
}

.feature-card p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
    text-align: justify;
}

/* Services Section */
.services {
    padding: 60px 0;
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-item {
    text-align: center;
    padding: 40px 20px;
    background: var(--white);
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 206, 209, 0.15);
}

.service-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
}

.services a {
    text-decoration: none;
}

/* Info Section */
.info-section {
    padding: 80px 0;
    background: var(--white);
}

.info-section.reverse {
    background: var(--bg-light);
}

.info-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.info-section.reverse .info-content {
    grid-template-columns: 1fr 1fr;
}

.info-section.reverse .info-text {
    order: 2;
}

.info-section.reverse .info-image {
    order: 1;
}

.info-text h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.3;
}

.info-text p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 25px;
    text-align: justify;
    line-height: 1.8;
}

.cta-button-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 12px 35px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 206, 209, 0.3);
    text-decoration: none !important;
}

.cta-button-outline {
    text-decoration: none !important;
}

.info-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.info-image img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 206, 209, 0.15);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
}

.cta-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 60px;
}

.cta-section a {
    text-decoration: none !important;
}

.cta-card a {
    text-decoration: none !important;
}

.cta-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.cta-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 20px;
}

.cta-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 206, 209, 0.2);
}

.cta-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #E0F2FE 0%, #F0F9FF 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 5px 0 5px;
}

.cta-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-card h3,
.cta-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    padding: 25px 5px 15px 5px;
    line-height: 1.4;
}

.cta-card p {
    font-size: 14px;
    color: var(--text-light);
    padding: 0 5px 20px 5px;
    line-height: 1.6;
}

.cta-card button {
    margin: 0 5px 25px 5px;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 206, 209, 0.9) 0%, rgba(32, 178, 170, 0.9) 100%), url('images/96880037_m1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 206, 209, 0.15);
    z-index: 0;
}

.contact-content {
    position: relative;
    z-index: 1;
}

.contact-form-wrapper h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 40px;
    text-align: center;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease;
    background: var(--white);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235A6C7D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    padding-right: 45px;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-group.checkbox input {
    width: auto;
    margin-top: 4px;
    cursor: pointer;
}

.form-group.checkbox label {
    font-size: 12px;
    font-weight: 400;
    color: var(--text-light);
    line-height: 1.5;
    cursor: pointer;
}

.submit-button {
    width: 100%;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: var(--white);
    border: none;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Map Section */
.map-section {
    padding: 0;
}

.map-container {
    width: 100%;
    height: 450px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.map-container .module.html {
    height: 100%;
}

.map-container .module.html iframe {
    height: 100% !important;
}

/* Footer */
.footer {
    background: var(--white);
    color: var(--text-dark);
    padding: 50px 0 30px;
    border-top: 1px solid rgba(0, 206, 209, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.footer-column p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-light);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-link {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content,
    .info-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-image,
    .info-image {
        order: -1;
    }

    .info-section.reverse .info-text,
    .info-section.reverse .info-image {
        order: 0;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-cards {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .info-content {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: all 0.3s ease;
    }

    .nav.active {
        max-height: 600px;
        opacity: 1;
        padding: 20px;
        overflow-y: auto;
    }

    .nav a,
    .nav-dropdown {
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid rgba(0, 206, 209, 0.1);
    }

    .nav-dropdown {
        display: flex;
        flex-direction: column;
    }

    .nav-dropdown-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .nav-dropdown .dropdown-arrow {
        transition: transform 0.3s ease;
    }

    .nav-dropdown.active .dropdown-arrow {
        transform: rotate(180deg);
    }

    .nav-dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        padding: 10px 0 10px 20px;
        margin-top: 10px;
        opacity: 1;
        visibility: visible;
        background: rgba(0, 206, 209, 0.05);
        border-radius: 8px;
        display: none;
        transition: all 0.3s ease;
    }

    .nav-dropdown.active .nav-dropdown-menu {
        display: block;
    }

    .nav-dropdown-menu::before {
        display: none;
    }

    .nav-dropdown-menu a {
        padding: 10px 15px;
        display: block;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .info-text h2 {
        font-size: 26px;
    }

    .cta-section h2 {
        font-size: 28px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 0;
    }

    .hero-text h1 {
        font-size: 26px;
    }

    .hero-text p {
        font-size: 14px;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 14px;
    }

    .features,
    .services,
    .info-section,
    .cta-section {
        padding: 40px 0;
    }

    .contact-section {
        padding: 40px 0;
    }
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #11d2ba 0%, #20B2AA 100%);
    padding: 60px 0 0;
    position: relative;
    overflow: hidden;
}

.page-hero-with-bg {
    position: relative;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(17, 210, 186, 0.6) 0%, rgba(32, 178, 170, 0.6) 100%);
    z-index: 2;
}

.page-hero-with-bg .container {
    position: relative;
    z-index: 3;
}

.page-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 40px;
}

.page-hero-image {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.page-hero-image img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

/* About Intro Section */
.about-intro {
    padding: 80px 0;
    background: var(--white);
}

.about-intro-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.4;
}

.about-intro-content p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: justify;
}

.about-intro-image {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.about-intro-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 206, 209, 0.15);
}

/* About Features Section */
.about-features {
    padding: 40px 0;
    background: var(--bg-light);
}

.about-feature-item {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
    padding: 40px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 206, 209, 0.15);
}

.about-feature-item:last-child {
    margin-bottom: 0;
}

.about-feature-item.reverse {
    grid-template-columns: 1fr 200px;
}

.about-feature-item.reverse .about-feature-icon {
    order: 2;
}

.about-feature-item.reverse .about-feature-content {
    order: 1;
}

.about-feature-item.full-width {
    grid-template-columns: 1fr;
    padding: 40px;
}

.about-feature-item.full-width .about-feature-content {
    max-width: none;
}

.about-feature-item.three-columns {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: center;
    justify-items: center;
}

.about-feature-item.three-columns .about-feature-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-feature-item.three-columns .about-feature-content img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
}

.about-feature-item.three-columns .about-feature-content p {
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.about-feature-item.two-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    align-items: start;
}

.about-feature-item.two-columns .about-feature-icon {
    justify-content: flex-start;
    margin: 0;
}

.about-feature-item.four-columns {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    align-items: center;
    justify-items: center;
}

.about-feature-item.four-columns .about-feature-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-feature-item.four-columns .about-feature-content a {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
    text-align: center;
}

.about-feature-item.four-columns .about-feature-content img {
    width: 100%;
    max-width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
}

.about-feature-item.four-columns .about-feature-content p {
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.smaller-font .about-feature-content h3 {
    font-size: 18px;
}

.smaller-font .about-feature-content p {
    font-size: 13px;
}

.about-feature-icon {
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.about-feature-icon svg {
    width: 100%;
    height: 100%;
}

.about-feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.about-feature-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-feature-content p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    text-align: justify;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 206, 209, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 206, 209, 0.5);
}

/* Active Navigation Link */
.nav a.active {
    color: var(--primary-color);
    font-weight: 600;
}

.nav a.active::after {
    width: 100%;
}

/* Responsive for About Page */
@media (max-width: 1024px) {
    .about-feature-item,
    .about-feature-item.reverse {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-feature-item.reverse .about-feature-icon,
    .about-feature-item.reverse .about-feature-content {
        order: 0;
    }

    .about-feature-item.four-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .about-feature-icon {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 36px;
    }

    .about-intro-content h2 {
        font-size: 24px;
    }

    .about-feature-item {
        padding: 30px 20px;
        margin-bottom: 40px;
    }

    .about-feature-item.four-columns {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .about-feature-content h3 {
        font-size: 20px;
    }

    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 40px 0 0;
    }

    .page-title {
        font-size: 28px;
    }

    .about-intro {
        padding: 40px 0;
    }

    .about-features {
        padding: 40px 0;
    }

    .about-feature-icon {
        width: 100px;
        height: 100px;
    }
}

/* Content Section Styles */
.content-section {
    padding: 80px 0;
    background: var(--white);
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.3;
}

.content-wrapper h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 40px;
    margin-bottom: 20px;
}

.content-wrapper p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.content-wrapper ul,
.content-wrapper ol {
    margin: 20px 0;
    padding-left: 30px;
}

.content-wrapper ul li,
.content-wrapper ol li {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 12px;
}

.content-wrapper ul li {
    list-style-type: none;
    position: relative;
    padding-left: 25px;
}

.content-wrapper ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 18px;
}

.content-wrapper ol li {
    padding-left: 10px;
}

.content-wrapper strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Privacy Policy Styles */
.privacy-policy {
    font-size: 12px;
}

.privacy-policy h3 {
    font-size: 14px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.privacy-policy p {
    font-size: 12px;
    margin-bottom: 10px;
}

.privacy-policy ul,
.privacy-policy ol {
    margin: 10px 0;
    padding-left: 20px;
}

.privacy-policy ul li,
.privacy-policy ol li {
    font-size: 12px;
    margin-bottom: 5px;
}

.cta-box {
    background: linear-gradient(135deg, rgba(0, 206, 209, 0.1) 0%, rgba(32, 178, 170, 0.05) 100%);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin-top: 50px;
    border: 2px solid rgba(0, 206, 209, 0.2);
}

.cta-box h3 {
    font-size: 26px;
    color: var(--text-dark);
    margin-top: 0;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 25px;
    text-align: center;
}

.cta-box .cta-button {
    display: inline-block;
}


/* FAQ Section Styles */
.faq-section {
    margin-top: 40px;
}

.faq-item {
    background: var(--white);
    border: 2px solid rgba(0, 206, 209, 0.1);
    border-radius: 12px;
    padding: 25px 30px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(0, 206, 209, 0.3);
    box-shadow: 0 5px 20px rgba(0, 206, 209, 0.1);
    transform: translateX(5px);
}

.faq-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-item h3::before {
    content: 'Q:';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: var(--white);
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.faq-item p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0;
    padding-left: 42px;
}


/* Contact Page Styles */
.contact-page {
    padding: 80px 0;
    background: var(--bg-light);
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info-box {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-info-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(0, 206, 209, 0.2);
}

.contact-info-header .logo {
    justify-content: flex-start;
}

.contact-info-section {
    margin-bottom: 35px;
}

.contact-info-section:last-child {
    margin-bottom: 0;
}

.contact-info-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-info-section p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 8px;
}

.contact-info-section p strong {
    color: var(--text-dark);
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.contact-form-box {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-form-box h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 35px;
    text-align: center;
}

.contact-form-simple {
    max-width: 100%;
}

.contact-form-simple .form-group {
    margin-bottom: 25px;
}

.contact-form-simple .form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-form-simple .form-group input,
.contact-form-simple .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease;
}

.contact-form-simple .form-group input:focus,
.contact-form-simple .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form-simple .form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form-simple .form-group.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-form-simple .form-group.checkbox input {
    width: auto;
    margin-top: 4px;
    cursor: pointer;
}

.contact-form-simple .form-group.checkbox label {
    font-size: 12px;
    font-weight: 400;
    color: var(--text-light);
    line-height: 1.6;
    cursor: pointer;
}

.contact-form-simple .submit-button {
    width: 100%;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: var(--white);
    border: none;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-simple .submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 206, 209, 0.3);
}

/* Two-column form styles */
.form-row.two-columns {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.form-column {
    flex: 1;
}

.form-column .form-group {
    margin-bottom: 25px;
}

.form-column .form-group:last-child {
    margin-bottom: 0;
}

/* Responsive for Contact Page */
@media (max-width: 1024px) {
    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info-box {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .contact-page {
        padding: 40px 0;
    }

    .contact-info-box,
    .contact-form-box {
        padding: 30px 20px;
    }

    .contact-form-box h2 {
        font-size: 26px;
    }
}


/* Blog Section Styles */
.blog-section {
    padding: 80px 0;
    background: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.blog-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 206, 209, 0.2);
}

.blog-card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #E0F2FE 0%, #F0F9FF 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card-content {
    padding: 30px 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 12px;
    color: var(--text-light);
}

.blog-date,
.blog-comments {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-date::before {
    content: '📅';
}

.blog-comments::before {
    content: '💬';
}

.blog-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.4;
    min-height: 56px;
}

.blog-title a {
    color: var(--text-dark);
    text-decoration: none;
}

.blog-excerpt {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 25px;
    flex: 1;
}

.blog-read-more {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 25px;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    transition: all 0.3s ease;
    text-align: center;
}

.blog-read-more:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 206, 209, 0.3);
}

/* Responsive for Blog */
@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .blog-section {
        padding: 40px 0;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .blog-card-content {
        padding: 25px 20px;
    }

    .blog-title {
        font-size: 18px;
        min-height: auto;
    }
}


/* Blog Post Styles */
.blog-post-hero {
    background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
    padding: 60px 0 40px;
}

.blog-post-header {
    max-width: 900px;
    margin: 0 auto;
}

.back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.back-to-blog:hover {
    transform: translateX(-5px);
}

.blog-post-header h1 {
    font-size: 40px;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 20px;
    line-height: 1.3;
}

.blog-post-header .blog-meta {
    margin-top: 15px;
    margin-bottom: 0;
}

.blog-post-image {
    width: 100%;
    max-width: 600px;
    margin: 40px auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.blog-post-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive for Blog Post */
@media (max-width: 768px) {
    .blog-post-hero {
        padding: 40px 0 30px;
    }

    .blog-post-header h1 {
        font-size: 28px;
    }

    .blog-post-image {
        margin: 30px 0;
    }
}
