/* Font imported in main.server.dart for better performance */

* {
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    padding: 0;
    margin: 0;
    font-family: system-ui, sans-serif;
    width: 100%;
    min-height: 100vh;
}

.main {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

/* Global responsive typography */
@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    h4 {
        font-size: 1rem;
    }

    p {
        font-size: 0.95rem;
    }
}

/* Header */
header {
    padding: 1rem;
    background-color: black;
}

header nav {
    display: flex;
    max-width: 1400px;
    padding: 0.5rem 1rem;
    margin: 0 auto;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-brand a {
    color: white;
    text-decoration: none;
}

/* Hamburger Button */
.hamburger-btn {
    display: none;
    padding: 0.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    flex-direction: column;
    background-color: transparent;
}

.hamburger-btn span {
    display: block;
    width: 25px;
    height: 3px;
    margin-bottom: 4px;
    border-radius: 2px;
    background-color: white;
}

.hamburger-btn span:last-child {
    margin: 0;
}

/* Navigation Links */
.nav-links {
    display: flex;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-item a {
    display: block;
    padding: 0.5rem 1rem;
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
}

.nav-item a:hover {
    color: #2563EB;
}

.nav-item.active::after {
    content: '';
    display: block;
    position: absolute;
    height: 2px;
    border-radius: 1px;
    background-color: #2563EB;
}

.lang-toggle-btn {
    padding: 0.5rem 1rem;
    margin-left: 1rem;
    border: 2px solid #2563EB;
    border-radius: 6px;
    cursor: pointer;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    background-color: transparent;
}

.lang-toggle-btn:hover {
    background-color: #2563EB;
}

/* Header Responsive */
@media (max-width: 1024px) {
    header .hamburger-btn {
        display: flex;
    }

    header .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 50;
        padding: 1rem;
        flex-direction: column;
        align-items: stretch;
        background-color: black;
    }

    header .nav-links.open {
        display: flex;
    }

    header .nav-item {
        margin-bottom: 0.5rem;
    }

    header .nav-item a {
        padding: 0.75rem;
        text-align: center;
    }

    header .nav-item.active::after {
        display: none;
    }

    header .lang-toggle-btn {
        width: 100%;
        margin-top: 0.5rem;
        margin-left: 0;
    }

    header nav {
        position: relative;
    }
}

/* Footer Section */
.footer-container {
    padding: 60px 20px 20px 20px;
    color: white;
    background-color: #0B0F19;
}

.footer-content {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-section {
    margin-bottom: 30px;
    flex-basis: 22%;
}

.footer-section h4 {
    margin-bottom: 15px;
    color: #2563EB;
    /* Colors.blue */
    font-size: 1.2rem;
    font-weight: bold;
}

.footer-section h5 {
    margin-bottom: 10px;
    color: #2563EB;
    font-size: 1rem;
    font-weight: bold;
}

.footer-section ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: gray;
    text-decoration: none;
}

.footer-section a:hover {
    color: #2563EB;
}

.company-info {
    flex-basis: 35%;
}

.company-info h3 {
    margin-bottom: 15px;
    color: #2563EB;
    font-size: 1.5rem;
}

.company-info p {
    margin-bottom: 20px;
    color: gray;
    line-height: 1.6em;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
}

.trust-badge {
    padding: 6px 12px;
    margin-right: 10px;
    margin-bottom: 10px;
    border-radius: 12px;
    color: #2563EB;
    font-size: 0.85rem;
    font-weight: 500;
    background-color: #1E293B;
}

.contact-items {
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    margin-bottom: 12px;
    align-items: center;
    color: gray;
    text-decoration: none;
}

.contact-item:hover {
    color: #2563EB;
}

.contact-icon {
    margin-right: 10px;
    font-size: 1.2rem;
}

.business-hours {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 10px;
    background-color: #1E293B;
}

.business-hours p {
    margin-bottom: 5px;
    color: #2563EB;
    font-size: 0.9rem;
}

.hours-header {
    display: flex;
    margin-bottom: 10px;
    align-items: center;
}

.hours-header .icon {
    margin-right: 8px;
    font-size: 1.3rem;
}

.social-links h5 {
    margin-bottom: 12px;
}

.social-buttons {
    display: flex;
}

.social-btn {
    display: flex;
    width: 40px;
    height: 40px;
    margin-right: 10px;
    border-radius: 8px;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    background-color: #1E293B;
}

.social-btn:hover {
    background-color: #2563EB;
}

.footer-bottom {
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
}

.footer-bottom hr {
    margin-bottom: 20px;
    border-top: 1px solid #1E293B;
}

.copyright {
    margin-bottom: 15px;
    color: gray;
    font-size: 0.9rem;
}

.footer-links {
    color: gray;
    font-size: 0.9rem;
}

.footer-links a {
    color: gray;
    text-decoration: none;
}

.footer-links a:hover {
    color: #2563EB;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer-section-wrapper {
        padding: 40px 16px 20px 16px;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-section {
        margin-bottom: 32px;
        flex-basis: 100%;
    }

    .company-info {
        margin-bottom: 32px;
        flex-basis: 100%;
    }

    .footer-section h3 {
        font-size: 1.1rem;
    }

    .footer-section p,
    .footer-section a {
        font-size: 0.9rem;
    }

    .footer-bottom {
        padding: 20px 16px;
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom p {
        margin-bottom: 12px;
        font-size: 0.85rem;
    }
}

/* Hero Section */
.hero-section {
    padding: 40px 20px 60px 20px;
    background-color: #2563EB;
}

.hero-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.hero-content {
    padding-right: 40px;
    flex-basis: 55%;
}

.logo-section {
    margin-bottom: 30px;
}

.brand-title {
    margin: 0;
    color: white;
    font-size: 3.5rem;
    font-weight: bold;
}

.hero-title {
    margin-bottom: 20px;
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.3em;
}

.hero-description {
    padding: 20px;
    margin-bottom: 40px;
    border-radius: 12px;
    background-color: rgba(0, 0, 0, 0.2);
}

.hero-description p {
    margin: 0;
    color: white;
    font-size: 1.1rem;
    line-height: 1.6em;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
}

.btn {
    display: flex;
    padding: 16px 32px;
    margin-right: 20px;
    margin-bottom: 10px;
    border-radius: 12px;
    cursor: pointer;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
}

.btn-primary {
    color: #2563EB;
    background-color: white;
}

.btn-primary:hover {
    background-color: #F3F4F6;
}

.btn-outline {
    border: 2px solid white;
    color: white;
    background-color: transparent;
}

.btn-outline:hover {
    background-color: #FFFFFF20;
}

.btn-icon {
    margin-right: 10px;
    font-size: 1.3rem;
}

.hero-visual {
    display: flex;
    flex-direction: column;
    flex-basis: 40%;
}

.visual-card {
    padding: 40px;
    margin-bottom: 30px;
    border: 1px solid #FFFFFF30;
    border-radius: 20px;
    text-align: center;
    background-color: #FFFFFF20;
}

.visual-card>div:first-child {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.visual-card h3 {
    margin-top: 20px;
    margin-bottom: 20px;
    color: white;
    font-size: 1.8rem;
}

.card-icon {
    font-size: 6rem;
}

.availability-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    color: #064E3B;
    background-color: #D1FAE5;
}

.emergency-card {
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0px 8px 15px #EF444430;
    background-color: #EF4444;
}

.emergency-card>div:first-child {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.emergency-card p {
    margin-top: 12px;
    margin-bottom: 16px;
    color: white;
    line-height: 1.5em;
}

.emergency-header {
    display: flex;
    margin-bottom: 12px;
    align-items: center;
}

.emergency-header h4 {
    margin: 0;
    color: white;
    font-size: 1.3rem;
    font-weight: bold;
}

.emergency-icon {
    margin-right: 12px;
    font-size: 1.5rem;
}

.emergency-phone {
    display: flex;
    padding: 12px 20px;
    border-radius: 12px;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    background-color: #FFFFFF30;
}

.emergency-phone span {
    margin-right: 12px;
    font-size: 1.2rem;
}

/* Hero Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 30px 16px 40px 16px;
    }

    .hero-container {
        flex-direction: column;
    }

    .hero-content {
        padding: 0;
        margin-bottom: 30px;
        flex-basis: 100%;
    }

    .hero-visual {
        flex-basis: 100%;
    }

    .brand-title {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 1.4rem;
        line-height: 1.4em;
    }

    .hero-description {
        padding: 16px;
        margin-bottom: 24px;
    }

    .hero-description p {
        font-size: 0.95rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        padding: 14px 24px;
        margin-bottom: 12px;
        margin-right: 0;
        justify-content: center;
        font-size: 1rem;
    }

    .visual-card {
        padding: 24px;
        margin-bottom: 20px;
    }

    .visual-card h3 {
        font-size: 1.4rem;
    }

    .card-icon {
        font-size: 4rem;
    }

    .emergency-card {
        padding: 20px;
    }

    .emergency-header h4 {
        font-size: 1.1rem;
    }

    .emergency-card p {
        font-size: 0.9rem;
    }
}

/* Trust and Testimonials Section */
.trust-section {
    padding: 60px 20px 60px 20px;
    background-color: white;
}

.trust-section .trust-container {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-section .section-header {
    margin-bottom: 48px;
    text-align: center;
}

.trust-section .header-badge {
    display: flex;
    width: auto;
    padding: 12px 24px;
    margin: 0 auto;
    border-radius: 25px;
    justify-content: center;
    align-items: center;
    background-color: #10B981;
}

.trust-section .header-badge h2 {
    margin: 0;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.trust-section .badge-icon {
    margin-right: 12px;
    font-size: 1.5rem;
}

.trust-section .section-title {
    margin-top: 24px;
    color: #2563EB;
    font-size: 2rem;
    font-weight: bold;
}

.trust-section .stats-grid {
    display: flex;
    margin: 0 8px 48px 8px;
    flex-wrap: wrap;
}

.trust-section .stat-card {
    min-width: 150px;
    padding: 8px;
    flex-basis: 25%;
}

.trust-section .stat-card>div:first-child {
    padding: 24px;
    border: 1px solid #DBEAFE;
    border-radius: 16px;
    text-align: center;
    background-color: #EFF6FF;
}

.trust-section .stat-number {
    margin-bottom: 8px;
    color: #2563EB;
    font-size: 2.5rem;
    font-weight: bold;
}

.trust-section .stat-label {
    color: #6B7280;
    font-size: 0.95rem;
}

.trust-section .testimonials-grid {
    display: flex;
    margin: 0 12px 32px 12px;
    flex-wrap: wrap;
}

.trust-section .testimonial-card {
    min-width: 280px;
    padding: 12px;
    flex-basis: 33.333%;
}

.trust-section .testimonial-card>div:first-child {
    display: flex;
    height: 100%;
    padding: 24px;
    border: 1px solid #E5E7EB;
    border-radius: 20px;
    box-shadow: 0px 4px 15px #00000010;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: white;
}

.trust-section .rating {
    margin-bottom: 16px;
}

.trust-section .star {
    color: #F59E0B;
    font-size: 1.2rem;
}

.trust-section .comment {
    margin-bottom: 20px;
    color: #1F2937;
    font-size: 1rem;
    font-style: italic;
    line-height: 1.6em;
}

.trust-section .customer-info {
    display: flex;
    margin-top: auto;
    align-items: center;
}

.trust-section .avatar {
    display: flex;
    width: 48px;
    height: 48px;
    margin-right: 12px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1rem;
    font-weight: bold;
    background-color: #2563EB;
}

.trust-section .customer-details {
    flex-grow: 1;
}

.trust-section .customer-name {
    margin-bottom: 4px;
    color: #1F2937;
    font-size: 1rem;
    font-weight: bold;
}

.trust-section .customer-meta {
    color: #6B7280;
    font-size: 0.85rem;
}

.trust-section .trust-badges {
    text-align: center;
}

.trust-section .trust-badges h4 {
    margin-bottom: 16px;
    color: #2563EB;
    font-size: 1.3rem;
    font-weight: bold;
}

.trust-section .badges-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-section .badge {
    display: flex;
    padding: 12px 16px;
    margin: 8px;
    border-radius: 12px;
    align-items: center;
    font-size: 0.95rem;
    font-weight: 500;
}

.trust-section .badge span {
    margin-right: 8px;
    font-size: 1.2rem;
}

.trust-section .badge-blue {
    border: 1px solid #2563EB;
    color: #1E40AF;
    background-color: #EFF6FF;
}

.trust-section .badge-green {
    border: 1px solid #10B981;
    color: #047857;
    background-color: #D1FAE5;
}

.trust-section .badge-orange {
    border: 1px solid #F59E0B;
    color: #B45309;
    background-color: #FEF3C7;
}

/* Trust Responsive */
@media (max-width: 768px) {
    .trust-section {
        padding: 40px 16px 40px 16px;
    }

    .trust-section .section-header h2 {
        font-size: 1.4rem;
    }

    .trust-section .section-header p {
        padding: 0 8px;
        font-size: 0.95rem;
    }

    .trust-section .testimonials-grid {
        margin: 0;
    }

    .trust-section .testimonial-card {
        padding-bottom: 16px;
        flex-basis: 100%;
    }

    .trust-section .testimonial-card>div:first-child {
        padding: 20px;
    }

    .trust-section .testimonial-text {
        font-size: 0.95rem;
    }

    .trust-section .testimonial-author h4 {
        font-size: 1rem;
    }

    .trust-section .testimonial-author p {
        font-size: 0.85rem;
    }

    .trust-section .rating {
        font-size: 1.2rem;
    }

    .trust-section .stat-card {
        flex-basis: 50%;
    }

    .trust-section .testimonial-card {
        flex-basis: 100%;
    }
}

/* What We Fix Section */
.what-we-fix-section {
    padding: 60px 20px 60px 20px;
    background-color: #F9FAFB;
}

.what-we-fix-section .fix-container {
    max-width: 1200px;
    margin: 0 auto;
}

.what-we-fix-section .section-header {
    margin-bottom: 48px;
    text-align: center;
}

.what-we-fix-section .header-badge {
    display: flex;
    width: auto;
    padding: 12px 24px;
    margin: 0 auto;
    border-radius: 25px;
    justify-content: center;
    align-items: center;
    background-color: #2563EB;
}

.what-we-fix-section .header-badge h2 {
    margin: 0;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.what-we-fix-section .badge-icon {
    margin-right: 12px;
    font-size: 1.5rem;
}

.what-we-fix-section .section-title {
    margin-top: 24px;
    margin-bottom: 16px;
    color: #2563EB;
    font-size: 2rem;
    font-weight: bold;
}

.what-we-fix-section .section-description {
    max-width: 800px;
    margin: 0 auto;
    color: #6B7280;
    font-size: 1.1rem;
    line-height: 1.6em;
}

.what-we-fix-section .services-grid {
    display: flex;
    margin: 0 12px 40px 12px;
    flex-wrap: wrap;
}

.what-we-fix-section .service-card {
    min-width: 280px;
    padding: 12px;
    flex-basis: 33.333%;
}

.what-we-fix-section .service-card>div:first-child {
    display: flex;
    height: 100%;
    padding: 24px;
    border: 1px solid #E5E7EB;
    border-radius: 20px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: white;
}

.what-we-fix-section .service-icon {
    margin-bottom: 20px;
    text-align: center;
    font-size: 3rem;
}

.what-we-fix-section .service-title {
    margin-bottom: 8px;
    color: #1F2937;
    font-size: 1.1rem;
    font-weight: bold;
}

.what-we-fix-section .service-subtitle {
    margin-bottom: 16px;
    color: #6B7280;
    font-size: 0.95rem;
    line-height: 1.5em;
}

.what-we-fix-section .service-stats {
    display: flex;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.what-we-fix-section .stat-chip {
    display: flex;
    padding: 6px 12px;
    margin-right: 12px;
    margin-bottom: 8px;
    border-radius: 12px;
    align-items: center;
    color: #2563EB;
    font-size: 0.85rem;
    font-weight: 500;
    background-color: #EFF6FF;
}

.what-we-fix-section .stat-chip span {
    margin-right: 6px;
    font-size: 1rem;
}

.what-we-fix-section .service-price {
    display: flex;
    padding: 8px 12px;
    margin: 0 auto;
    border-radius: 12px;
    align-items: center;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    background-color: #2563EB;
}

.what-we-fix-section .service-price span {
    margin-right: 8px;
    font-size: 1rem;
}

.what-we-fix-section .cta-section {
    text-align: center;
}

.what-we-fix-section .cta-button {
    display: inline-flex;
    padding: 16px 32px;
    border-radius: 16px;
    box-shadow: 0px 8px 15px #2563EB30;
    align-items: center;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    background-color: #2563EB;
}

.what-we-fix-section .cta-button:hover {
    background-color: #1D4ED8;
}

.what-we-fix-section .cta-icon {
    margin-left: 10px;
    font-size: 1.2rem;
}

/* What We Fix Responsive */
@media (max-width: 768px) {
    .what-we-fix-section {
        padding: 40px 16px 40px 16px;
    }

    .what-we-fix-section .section-header h2 {
        font-size: 1.4rem;
    }

    .what-we-fix-section .section-header p {
        padding: 0 8px;
        font-size: 0.95rem;
    }

    .what-we-fix-section .services-grid {
        margin: 0;
    }

    .what-we-fix-section .service-card {
        padding-bottom: 16px;
        flex-basis: 100%;
    }

    .what-we-fix-section .service-card>div:first-child {
        padding: 20px;
    }

    .what-we-fix-section .service-icon {
        font-size: 2.5rem;
    }

    .what-we-fix-section .service-title {
        font-size: 1.1rem;
    }

    .what-we-fix-section .service-subtitle {
        font-size: 0.9rem;
    }

    .what-we-fix-section .section-title {
        font-size: 1.5rem;
    }
}

/* Enhanced Core Services Section */
.core-services-section {
    padding: 80px 24px;
    background-color: #F9FAFB;
}

.core-services-section .services-container {
    max-width: 1280px;
    margin: 0 auto;
}

.core-services-section .section-header {
    margin-bottom: 64px;
    text-align: center;
}

.core-services-section .header-badge {
    display: inline-flex;
    padding: 8px 16px;
    margin-bottom: 24px;
    border: 1px solid #BFDBFE;
    border-radius: 100px;
    align-items: center;
    background-color: #EBF5FF;
}

.core-services-section .header-badge h2 {
    margin: 0;
    color: #1E40AF;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.core-services-section .badge-icon {
    margin-right: 8px;
    font-size: 1rem;
}

.core-services-section .section-title {
    margin-bottom: 24px;
    color: #111827;
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2em;
}

.core-services-section .section-description {
    max-width: 768px;
    margin: 0 auto;
    color: #4B5563;
    font-size: 1.25rem;
    line-height: 1.6em;
}

.core-services-section .services-grid {
    display: flex;
    margin: 0 -12px;
    flex-wrap: wrap;
}

.core-services-section .service-card {
    display: flex;
    width: 25%;
    padding: 12px;
    box-sizing: border-box;
}

.core-services-section .service-card>div:first-child {
    display: flex;
    width: 100%;
    padding: 32px;
    border: 1px solid #F3F4F6;
    border-radius: 24px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 300ms ease-out;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: white;
}

.core-services-section .service-card>div:first-child:hover {
    border: 1px solid #BFDBFE;
    box-shadow: 0px 12px 24px rgba(37, 99, 235, 0.1);
    transform: translateY(-8px);
}

.core-services-section .service-icon {
    display: flex;
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
    border-radius: 16px;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    background-color: #F3F4F6;
}

.core-services-section .service-title {
    margin-bottom: 12px;
    color: #111827;
    font-size: 1.5rem;
    font-weight: bold;
}

.core-services-section .service-description {
    margin-bottom: 24px;
    flex-grow: 1;
    color: #6B7280;
    font-size: 1rem;
    line-height: 1.5em;
}

.core-services-section .service-features {
    padding: 0;
    margin-bottom: 24px;
    list-style: none;
}

.core-services-section .service-features li {
    display: flex;
    margin-bottom: 12px;
    align-items: center;
    color: #374151;
    font-size: 0.95rem;
    font-weight: 500;
}

.core-services-section .feature-icon {
    display: flex;
    width: 20px;
    height: 20px;
    margin-right: 12px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    color: #059669;
    font-size: 0.75rem;
    font-weight: bold;
    background-color: #D1FAE5;
}

.core-services-section .service-price {
    padding: 12px 16px;
    border-radius: 12px;
    color: #2563EB;
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    background-color: #EFF6FF;
}

.core-services-section .price-icon {
    margin-right: 4px;
    font-weight: normal;
}

.core-services-section .action-buttons {
    display: flex;
    margin-top: 64px;
    justify-content: center;
    gap: 16px;
}

.core-services-section .btn {
    display: inline-flex;
    padding: 16px 32px;
    border-radius: 100px;
    cursor: pointer;
    transition: all 200ms;
    justify-content: center;
    align-items: center;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
}

.core-services-section .btn-primary {
    border: none;
    box-shadow: 0px 8px 16px rgba(37, 99, 235, 0.2);
    color: white;
    background-color: #2563EB;
}

.core-services-section .btn-primary:hover {
    transform: translateY(-2px);
    background-color: #1D4ED8;
}

.core-services-section .btn-outline {
    border: 2px solid #E5E7EB;
    color: #1F2937;
    background-color: transparent;
}

.core-services-section .btn-outline:hover {
    border: 2px solid #2563EB;
    color: #2563EB;
    background-color: #EFF6FF;
}

/* Enhanced Core Services Responsive */
@media (max-width: 1024px) {
    .core-services-section .section-title {
        font-size: 2.5rem;
    }

    .core-services-section .service-card {
        width: 50%;
    }
}

@media (max-width: 768px) {
    .core-services-section {
        padding: 48px 16px;
    }

    .core-services-section .section-header {
        margin-bottom: 40px;
    }

    .core-services-section .section-title {
        font-size: 2rem;
    }

    .core-services-section .service-card {
        width: 100%;
        padding: 8px 0;
    }

    .core-services-section .service-card>div:first-child {
        padding: 24px;
    }

    .core-services-section .action-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .core-services-section .btn {
        width: 100%;
    }
}

/* Get In Touch Page */
.support-page {
    background-color: #F9FAFB;
}

.support-page .hero-section {
    padding: 60px 20px 60px 20px;
    text-align: center;
    background-color: #2563EB;
}

.support-page .hero-section h1 {
    margin-bottom: 16px;
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
}

.support-page .hero-icon {
    display: flex;
    width: 80px;
    height: 80px;
    margin: 0 auto 24px auto;
    border-radius: 20px;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    background-color: #FFFFFF20;
}

.support-page .hero-subtitle {
    max-width: 700px;
    margin: 0 auto;
    color: white;
    font-size: 1.2rem;
}

.support-page .content-wrapper {
    display: flex;
    max-width: 1400px;
    padding: 40px 20px 40px 20px;
    margin: 0 auto;
    flex-direction: column;
    align-items: center;
}

.support-page .contact-methods {
    display: flex;
    width: 100%;
    max-width: 1000px;
    margin-bottom: 40px;
    flex-direction: column;
}

.support-page .contact-methods h2 {
    margin-bottom: 24px;
    align-self: center;
    color: #2563EB;
    font-size: 1.8rem;
    font-weight: bold;
}

.support-page .contact-groups-wrapper {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.support-page .contact-group {
    display: flex;
    flex-direction: column;
    flex: 1 0 calc(50% - 20px);
}

.support-page .contact-card {
    display: block;
    padding: 24px;
    margin-bottom: 16px;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    background-color: white;
}

.support-page .contact-card>div:first-child {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.support-page .contact-card:hover {
    background-color: #2563EB10;
}

.support-page .contact-card h4 {
    margin: 16px 0 8px 0;
    color: #2563EB;
    font-size: 1.25rem;
    font-weight: bold;
}

.support-page .contact-card-icon {
    display: inline-block;
    font-size: 2.5rem;
}

.support-page .contact-value {
    margin-bottom: 4px;
    color: #1F2937;
    font-size: 1.1rem;
    font-weight: 600;
}

.support-page .contact-subtitle {
    margin: 0;
    color: #6B7280;
    font-size: 0.95rem;
}

.support-page .business-hours {
    padding: 24px;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    text-align: center;
    background-color: white;
}

.support-page .business-hours>div:first-child {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.support-page .business-hours h3 {
    margin-bottom: 16px;
    color: #10B981;
    font-size: 1.25rem;
    font-weight: bold;
}

.support-page .hours-list {
    display: flex;
    width: 100%;
    flex-direction: column;
}

.support-page .hour-row {
    display: flex;
    width: 100%;
    padding: 8px 0;
    border-bottom: 1px solid #E5E7EB;
    justify-content: space-between;
}

.support-page .hour-row:last-child {
    border: none;
}

.support-page .day {
    color: #4B5563;
    font-size: 0.95rem;
    font-weight: 500;
}

.support-page .hours {
    color: #10B981;
    font-size: 0.95rem;
    font-weight: 600;
}

.support-page .support-form-section {
    width: 100%;
    max-width: 800px;
    padding: 32px;
    margin-top: 40px;
    border: 1px solid #E5E7EB;
    border-radius: 20px;
    background-color: white;
}

.support-page .support-form-section h2 {
    margin-bottom: 12px;
    color: #2563EB;
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
}

.support-page .form-description {
    margin-bottom: 32px;
    color: #6B7280;
    font-size: 1rem;
}

.support-page .support-form {
    display: flex;
    flex-direction: column;
}

.support-page .form-row {
    display: flex;
}

.support-page .form-row>.form-group {
    padding: 0 12px;
    flex-basis: 50%;
}

.support-page .form-group {
    margin-bottom: 20px;
}

.support-page .form-group label {
    display: block;
    margin-bottom: 8px;
    color: #374151;
    font-size: 0.95rem;
    font-weight: 600;
}

.support-page .form-group input,
.support-page .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    font-size: 1rem;
}

.support-page .form-group input:focus,
.support-page .form-group textarea:focus {
    border: 2px solid #2563EB;
}

.support-page .form-group textarea {
    font-family: inherit;
}

.support-page .submit-button {
    display: flex;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    background-color: #10B981;
}

.support-page .submit-button:hover {
    background-color: #059669;
}

.support-page .submit-button span {
    margin-right: 8px;
    font-size: 1.2rem;
}

.support-page .quick-faq-section {
    padding: 60px 20px 60px 20px;
    background-color: #2563EB10;
}

.support-page .quick-faq-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.support-page .quick-faq-content h2 {
    margin-bottom: 40px;
    color: #2563EB;
    font-size: 2rem;
    font-weight: bold;
}

.support-page .faq-grid {
    display: flex;
    margin: 0 12px 32px 12px;
    flex-wrap: wrap;
}

.support-page .quick-faq-item {
    min-width: 200px;
    padding: 12px;
    flex-basis: 25%;
}

.support-page .quick-faq-item>div:first-child {
    display: flex;
    padding: 20px;
    border: 1px solid #2563EB30;
    border-radius: 12px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: white;
}

.support-page .quick-faq-item h4 {
    margin-bottom: 8px;
    color: #2563EB;
    font-size: 1rem;
    font-weight: bold;
}

.support-page .quick-faq-item p {
    margin: 0;
    color: #6B7280;
    font-size: 0.9rem;
}

.support-page .view-all-faq {
    display: inline-block;
    padding: 12px 24px;
    border: 2px solid #2563EB;
    border-radius: 8px;
    cursor: pointer;
    color: #2563EB;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
}

.support-page .view-all-faq:hover {
    color: white;
    background-color: #2563EB;
}

/* Get In Touch Responsive */
@media (max-width: 768px) {
    .support-page .content-wrapper {
        flex-direction: column;
    }

    .support-page .contact-methods {
        width: 100%;
        margin-bottom: 32px;
        margin-right: 0;
    }

    .support-page .contact-groups-wrapper {
        flex-direction: column;
    }

    .support-page .contact-group {
        margin-bottom: 16px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .support-page .form-row {
        flex-direction: column;
    }

    .support-page .form-row>.form-group {
        flex-basis: 100%;
    }

    .support-page .quick-faq-item {
        flex-basis: 100%;
    }

    .support-page .hero-section h1 {
        font-size: 2rem;
    }
}

/* Partner With Us Page */
.partner-page {
    background-color: #F9FAFB;
}

.partner-page .hero-section {
    padding: 80px 20px 80px 20px;
    text-align: center;
    background-color: #7C3AED;
}

.partner-page .hero-section h1 {
    margin-bottom: 20px;
    color: white;
    font-size: 3rem;
    font-weight: bold;
}

.partner-page .hero-subtitle {
    max-width: 600px;
    margin: 20px auto;
    color: white;
    font-size: 1.25rem;
}

.partner-page .hero-actions {
    display: flex;
    margin-top: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.partner-page .btn {
    display: inline-flex;
    padding: 16px 32px;
    margin: 10px;
    border-radius: 12px;
    cursor: pointer;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
}

.partner-page .btn span {
    margin-right: 8px;
    font-size: 1.2rem;
}

.partner-page .btn-primary {
    border: none;
    color: white;
    background-color: #7C3AED;
}

.partner-page .btn-primary:hover {
    background-color: #6D28D9;
}

.partner-page .btn-outline {
    border: 2px solid white;
    color: white;
    background-color: transparent;
}

.partner-page .btn-outline:hover {
    background-color: #FFFFFF20;
}

.partner-page .btn-apply {
    width: 100%;
    border: none;
    justify-content: center;
    color: white;
    background-color: #059669;
}

.partner-page .btn-apply:hover {
    background-color: #047857;
}

.partner-page .btn-large {
    padding: 20px 40px;
    border: none;
    color: white;
    font-size: 1.3rem;
    background-color: #8B5CF6;
}

.partner-page .btn-large:hover {
    background-color: #7C3AED;
}

.partner-page .section {
    max-width: 1200px;
    padding: 60px 20px 60px 20px;
    margin: 0 auto;
}

.partner-page .section-header {
    margin-bottom: 48px;
    text-align: center;
}

.partner-page .section-header h2 {
    margin: 0;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.partner-page .section-header h3 {
    margin: 20px 0 16px 0;
    color: #7C3AED;
    font-size: 2rem;
    font-weight: bold;
}

.partner-page .section-header p {
    max-width: 800px;
    margin: 0 auto;
    color: #6B7280;
    font-size: 1.1rem;
    line-height: 1.6em;
}

.partner-page .header-badge {
    display: flex;
    width: auto;
    padding: 12px 24px;
    margin: 0 auto;
    border-radius: 25px;
    justify-content: center;
    align-items: center;
    background-color: #7C3AED;
}

.partner-page .header-badge span {
    margin-right: 12px;
    font-size: 1.5rem;
}

.partner-page .benefits-grid {
    display: flex;
    margin: 0 12px;
    flex-wrap: wrap;
}

.partner-page .benefit-card {
    min-width: 250px;
    padding: 12px;
    flex: 1 1 25%;
}

.partner-page .benefit-card>div:first-child {
    display: flex;
    padding: 24px;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: white;
}

.partner-page .benefit-card h4 {
    margin: 16px 0 12px 0;
    color: #7C3AED;
    font-size: 1.25rem;
    font-weight: bold;
}

.partner-page .benefit-card p {
    margin: 0;
    color: #6B7280;
    font-size: 0.95rem;
}

.partner-page .benefit-icon {
    font-size: 3rem;
}

.partner-page .partnerships-grid {
    display: flex;
    margin: 0 12px;
    flex-wrap: wrap;
}

.partner-page .partnership-card {
    min-width: 300px;
    padding: 12px;
    flex: 1 1 50%;
}

.partner-page .partnership-card>div:first-child {
    display: flex;
    height: 100%;
    padding: 24px;
    border: 1px solid #E5E7EB;
    border-radius: 20px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: white;
}

.partner-page .partnership-title {
    margin-bottom: 16px;
    color: #059669;
    font-size: 1.5rem;
    font-weight: bold;
}

.partner-page .partnership-description {
    margin-bottom: 20px;
    color: #4B5563;
    font-size: 1rem;
    line-height: 1.6em;
}

.partner-page .partnership-benefits {
    margin-bottom: 20px;
}

.partner-page .partnership-benefits h4 {
    margin-bottom: 12px;
    color: #059669;
    font-size: 1.1rem;
    font-weight: bold;
}

.partner-page .partnership-benefits ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.partner-page .partnership-benefits li {
    display: flex;
    margin-bottom: 8px;
    align-items: center;
    color: #6B7280;
    font-size: 0.95rem;
}

.partner-page .check-icon {
    margin-right: 8px;
    color: #10B981;
    font-size: 1rem;
    font-weight: bold;
}

.partner-page .partnership-ideal {
    display: flex;
    padding: 12px;
    margin: auto 0 20px 0;
    border-radius: 12px;
    align-items: center;
    color: #059669;
    font-size: 0.9rem;
    font-weight: 500;
    background-color: #D1FAE5;
}

.partner-page .partnership-ideal span {
    margin-right: 8px;
    font-size: 1.2rem;
}

.partner-page .apply-section {
    padding: 60px;
    text-align: center;
    background-color: #8B5CF610;
}

.partner-page .apply-content {
    max-width: 900px;
    margin: 0 auto;
}

.partner-page .apply-content h2 {
    margin-bottom: 20px;
    color: #8B5CF6;
    font-size: 2.5rem;
    font-weight: bold;
}

.partner-page .apply-content p {
    margin-bottom: 40px;
    color: #6B7280;
    font-size: 1.2rem;
    line-height: 1.6em;
}

.partner-page .application-steps {
    display: flex;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.partner-page .application-step {
    min-width: 200px;
    padding: 20px;
    flex: 1 1 33.333%;
}

.partner-page .application-step>div:first-child {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.partner-page .application-step h4 {
    margin: 16px 0 8px 0;
    color: #8B5CF6;
    font-size: 1.1rem;
    font-weight: bold;
}

.partner-page .application-step p {
    margin: 0;
    color: #6B7280;
    font-size: 0.9rem;
}

.partner-page .step-number {
    display: flex;
    width: 40px;
    height: 40px;
    margin: 0 auto;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    background-color: #8B5CF6;
}

/* Partner With Us Responsive */
@media (max-width: 768px) {

    .partner-page .benefit-card,
    .partner-page .partnership-card,
    .partner-page .application-step {
        flex: 1 1 100%;
    }

    .partner-page .hero-section h1 {
        font-size: 2rem;
    }
}

/* Work With Us Page */
.work-with-us-page {
    background-color: #F9FAFB;
}

.work-with-us-page .hero-section {
    padding: 80px 20px 80px 20px;
    text-align: center;
    background-color: #2563EB;
}

.work-with-us-page .hero-section h1 {
    margin-bottom: 20px;
    color: white;
    font-size: 3rem;
    font-weight: bold;
}

.work-with-us-page .hero-subtitle {
    max-width: 600px;
    margin: 20px auto;
    color: white;
    font-size: 1.25rem;
}

.work-with-us-page .hero-actions {
    display: flex;
    margin-top: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.work-with-us-page .btn {
    display: inline-flex;
    padding: 16px 32px;
    margin: 10px;
    border-radius: 12px;
    cursor: pointer;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
}

.work-with-us-page .btn span {
    margin-right: 8px;
    font-size: 1.2rem;
}

.work-with-us-page .btn-primary {
    border: none;
    color: white;
    background-color: #10B981;
}

.work-with-us-page .btn-primary:hover {
    background-color: #059669;
}

.work-with-us-page .btn-outline {
    border: 2px solid white;
    color: white;
    background-color: transparent;
}

.work-with-us-page .btn-outline:hover {
    background-color: #FFFFFF20;
}

.work-with-us-page .btn-apply {
    width: 100%;
    border: none;
    justify-content: center;
    color: white;
    background-color: #10B981;
}

.work-with-us-page .btn-apply:hover {
    background-color: #059669;
}

.work-with-us-page .btn-large {
    padding: 20px 40px;
    border: none;
    color: white;
    font-size: 1.3rem;
    background-color: #8B5CF6;
}

.work-with-us-page .btn-large:hover {
    background-color: #7C3AED;
}

.work-with-us-page .section {
    max-width: 1200px;
    padding: 60px 20px 60px 20px;
    margin: 0 auto;
}

.work-with-us-page .section-header {
    margin-bottom: 48px;
    text-align: center;
}

.work-with-us-page .section-header h2 {
    margin: 0;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.work-with-us-page .section-header h3 {
    margin: 20px 0 16px 0;
    color: #2563EB;
    font-size: 2rem;
    font-weight: bold;
}

.work-with-us-page .section-header p {
    max-width: 800px;
    margin: 0 auto;
    color: #6B7280;
    font-size: 1.1rem;
    line-height: 1.6em;
}

.work-with-us-page .header-badge {
    display: flex;
    width: auto;
    padding: 12px 24px;
    margin: 0 auto;
    border-radius: 25px;
    justify-content: center;
    align-items: center;
    background-color: #2563EB;
}

.work-with-us-page .header-badge span {
    margin-right: 12px;
    font-size: 1.5rem;
}

.work-with-us-page .culture-grid {
    display: flex;
    margin: 0 12px;
    flex-wrap: wrap;
}

.work-with-us-page .culture-card {
    min-width: 250px;
    padding: 12px;
    flex: 1 1 33.333%;
}

.work-with-us-page .culture-card>div:first-child {
    padding: 24px;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: white;
}

.work-with-us-page .culture-card h4 {
    margin: 16px 0 12px 0;
    color: #10B981;
    font-size: 1.25rem;
    font-weight: bold;
}

.work-with-us-page .culture-card p {
    margin: 0;
    color: #6B7280;
    font-size: 0.95rem;
}

.work-with-us-page .culture-icon {
    font-size: 3rem;
}

.work-with-us-page .jobs-grid {
    display: flex;
    margin: 0 12px;
    flex-wrap: wrap;
}

.work-with-us-page .job-card {
    min-width: 300px;
    padding: 12px;
    flex: 1 1 50%;
}

.work-with-us-page .job-card>div:first-child {
    display: flex;
    height: 100%;
    padding: 24px;
    border: 1px solid #E5E7EB;
    border-radius: 20px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: white;
}

.work-with-us-page .job-title {
    margin-bottom: 16px;
    color: #059669;
    font-size: 1.5rem;
    font-weight: bold;
}

.work-with-us-page .job-description {
    margin-bottom: 20px;
    color: #4B5563;
    font-size: 1rem;
    line-height: 1.6em;
}

.work-with-us-page .job-requirements {
    margin-bottom: 20px;
}

.work-with-us-page .job-requirements h4 {
    margin-bottom: 12px;
    color: #059669;
    font-size: 1.1rem;
    font-weight: bold;
}

.work-with-us-page .job-requirements ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.work-with-us-page .job-requirements li {
    display: flex;
    margin-bottom: 8px;
    align-items: center;
    color: #6B7280;
    font-size: 0.95rem;
}

.work-with-us-page .check-icon {
    margin-right: 8px;
    color: #10B981;
    font-size: 1rem;
    font-weight: bold;
}

.work-with-us-page .job-audience {
    display: flex;
    padding: 12px;
    margin: auto 0 20px 0;
    border-radius: 12px;
    align-items: center;
    color: #059669;
    font-size: 0.9rem;
    font-weight: 500;
    background-color: #D1FAE5;
}

.work-with-us-page .job-audience span {
    margin-right: 8px;
    font-size: 1.2rem;
}

.work-with-us-page .testimonials-grid {
    display: flex;
    margin: 0 12px;
    flex-wrap: wrap;
}

.work-with-us-page .testimonial-card {
    min-width: 300px;
    padding: 12px;
    flex: 1 1 50%;
}

.work-with-us-page .testimonial-card>div:first-child {
    display: flex;
    padding: 32px;
    border: 1px solid #E5E7EB;
    border-radius: 20px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: white;
}

.work-with-us-page .quote-icon {
    margin-bottom: 16px;
    color: #10B981;
    font-size: 3rem;
    font-weight: bold;
}

.work-with-us-page .testimonial-quote {
    margin-bottom: 24px;
    color: #1F2937;
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.6em;
}

.work-with-us-page .testimonial-author {
    display: flex;
    align-items: center;
}

.work-with-us-page .author-avatar {
    display: flex;
    width: 48px;
    height: 48px;
    margin-right: 12px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    background-color: #10B981;
}

.work-with-us-page .author-name {
    margin-bottom: 4px;
    color: #10B981;
    font-size: 1.1rem;
    font-weight: bold;
}

.work-with-us-page .author-role {
    color: #6B7280;
    font-size: 0.9rem;
}

.work-with-us-page .apply-section {
    padding: 60px;
    text-align: center;
    background-color: #8B5CF610;
}

.work-with-us-page .apply-content {
    max-width: 800px;
    margin: 0 auto;
}

.work-with-us-page .apply-content h2 {
    margin-bottom: 20px;
    color: #8B5CF6;
    font-size: 2.5rem;
    font-weight: bold;
}

.work-with-us-page .apply-content p {
    margin-bottom: 40px;
    color: #6B7280;
    font-size: 1.2rem;
    line-height: 1.6em;
}

/* Work With Us Responsive */
@media (max-width: 768px) {

    .work-with-us-page .culture-card,
    .work-with-us-page .job-card,
    .work-with-us-page .testimonial-card {
        flex: 1 1 100%;
    }

    .work-with-us-page .hero-section h1 {
        font-size: 2rem;
    }
}

/* Info Cards Section */
.info-cards-section {
    padding: 60px 20px;
    background-color: white;
}

.info-cards-section .info-container {
    max-width: 1200px;
    margin: 0 auto;
}

.info-cards-section .section-header {
    margin-bottom: 48px;
    text-align: center;
}

.info-cards-section .header-badge {
    display: inline-block;
    padding: 12px 20px;
    margin-bottom: 20px;
    border-radius: 20px;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    background-color: #2563EB;
}

.info-cards-section .section-subtitle {
    margin: 0;
    color: #6B7280;
    font-size: 1.1rem;
    line-height: 1.6em;
}

.info-cards-section .commitment-grid {
    display: flex;
    margin: 0 12px;
    flex-wrap: wrap;
}

.info-cards-section .commitment-card {
    min-width: 280px;
    padding: 12px;
    flex: 1 1 33.333%;
}

.info-cards-section .commitment-card>div:first-child {
    display: flex;
    height: 100%;
    padding: 24px;
    border: 1px solid #E5E7EB;
    border-radius: 20px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: white;
}

.info-cards-section .card-icon {
    display: flex;
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    background-color: #2563EB;
}

.info-cards-section .card-title {
    margin-bottom: 12px;
    color: #1F2937;
    font-size: 1.25rem;
    font-weight: bold;
}

.info-cards-section .card-description {
    margin-bottom: 16px;
    color: #6B7280;
    font-size: 0.95rem;
    line-height: 1.6em;
}

.info-cards-section .features-list {
    padding: 0;
    margin-bottom: 16px;
    list-style: none;
}

.info-cards-section .features-list li {
    display: flex;
    margin-bottom: 8px;
    align-items: center;
    color: #4B5563;
    font-size: 0.9rem;
}

.info-cards-section .check-icon {
    margin-right: 8px;
    color: #10B981;
    font-size: 1rem;
    font-weight: bold;
}

.info-cards-section .trust-badge {
    display: flex;
    padding: 8px 12px;
    margin: 0 auto;
    border-radius: 12px;
    align-items: center;
    color: #2563EB;
    font-size: 0.85rem;
    font-weight: 500;
    background-color: #F3F4F6;
}

.info-cards-section .badge-icon {
    margin-right: 8px;
    font-size: 1rem;
}

/* Info Cards Responsive */
@media (max-width: 768px) {
    .info-cards-section {
        padding: 40px 16px;
    }

    .info-cards-section .commitment-grid {
        margin: 0;
    }

    .info-cards-section .commitment-card {
        padding-bottom: 16px;
        flex: 1 1 100%;
    }

    .info-cards-section .commitment-card>div:first-child {
        padding: 20px;
    }

    .info-cards-section .card-icon {
        margin-bottom: 16px;
        font-size: 2.5rem;
    }

    .info-cards-section .card-title {
        font-size: 1.2rem;
    }

    .info-cards-section .card-description {
        font-size: 0.9rem;
    }
}

/* FAQ Page */
.faq-page {
    background-color: #F9FAFB;
}

.faq-page .hero-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #7C3AED;
}

.faq-page .hero-section h1 {
    margin-bottom: 16px;
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
}

.faq-page .hero-icon {
    display: flex;
    width: 80px;
    height: 80px;
    margin: 0 auto 24px auto;
    border-radius: 20px;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    background-color: #FFFFFF20;
}

.faq-page .hero-subtitle {
    max-width: 700px;
    margin: 0 auto;
    color: white;
    font-size: 1.2rem;
}

.faq-page .content-container {
    max-width: 1200px;
    padding: 40px 20px;
    margin: 0 auto;
}

.faq-page .stats-section {
    display: flex;
    padding: 24px;
    margin-bottom: 48px;
    border: 1px solid #10B98130;
    border-radius: 16px;
    flex-wrap: wrap;
    justify-content: space-evenly;
    background-color: #10B98110;
}

.faq-page .stat-card {
    display: flex;
    padding: 20px;
    flex-direction: column;
    align-items: center;
}

.faq-page .stat-icon {
    margin-bottom: 8px;
    font-size: 2rem;
}

.faq-page .stat-value {
    margin-bottom: 4px;
    color: #10B981;
    font-size: 2rem;
    font-weight: bold;
}

.faq-page .stat-label {
    color: #10B981;
    font-size: 0.9rem;
}

.faq-page .categories-section {
    margin-bottom: 48px;
}

.faq-page .categories-section h2 {
    margin-bottom: 24px;
    color: #7C3AED;
    font-size: 2rem;
    font-weight: bold;
}

.faq-page .categories-grid {
    display: flex;
    margin: 0 12px;
    flex-wrap: wrap;
}

.faq-page .category-card {
    min-width: 200px;
    padding: 12px;
    flex: 1 1 25%;
}

.faq-page .category-card>div:first-child {
    padding: 20px;
    border: 1px solid #7C3AED30;
    border-radius: 12px;
    cursor: pointer;
    text-align: center;
    background-color: white;
}

.faq-page .category-card>div:first-child:hover {
    background-color: #7C3AED10;
}

.faq-page .category-card h4 {
    margin-bottom: 8px;
    color: #7C3AED;
    font-size: 1.2rem;
    font-weight: bold;
}

.faq-page .category-card p {
    margin: 0;
    color: #6B7280;
    font-size: 0.9rem;
}

.faq-page .faq-list-section {
    margin-bottom: 48px;
}

.faq-page .faq-list-section h2 {
    margin-bottom: 24px;
    color: #7C3AED;
    font-size: 2rem;
    font-weight: bold;
}

.faq-page .faq-list {
    display: flex;
    flex-direction: column;
}

.faq-page .faq-item {
    margin-bottom: 16px;
    border: 1px solid #7C3AED30;
    border-radius: 12px;
    background-color: white;
}

.faq-page .faq-item summary {
    padding: 20px;
    cursor: pointer;
    list-style: none;
}

.faq-page .faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-page .faq-question {
    display: flex;
    align-items: center;
    color: #1F2937;
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-page .faq-question:hover {
    color: #7C3AED;
}

.faq-page .category-badge {
    display: inline-block;
    padding: 4px 12px;
    margin-right: 12px;
    border-radius: 12px;
    color: #7C3AED;
    font-size: 0.75rem;
    font-weight: 600;
    background-color: #7C3AED20;
}

.faq-page .faq-answer {
    padding: 0 20px 20px 20px;
    border-top: 1px solid #E5E7EB;
}

.faq-page .faq-answer p {
    margin-top: 16px;
    color: #4B5563;
    font-size: 1rem;
    line-height: 1.7em;
}

.faq-page .contact-section {
    padding: 40px;
    text-align: center;
}

.faq-page .contact-card {
    max-width: 600px;
    padding: 40px;
    margin: 0 auto;
    border: 1px solid #10B98130;
    border-radius: 20px;
    background-color: #10B98110;
}

.faq-page .contact-card h3 {
    margin: 16px 0 12px 0;
    color: #10B981;
    font-size: 1.8rem;
    font-weight: bold;
}

.faq-page .contact-card p {
    margin-bottom: 24px;
    color: #4B5563;
    font-size: 1.1rem;
}

.faq-page .contact-icon {
    display: inline-block;
    font-size: 3rem;
}

.faq-page .contact-button {
    display: inline-block;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    background-color: #10B981;
}

.faq-page .contact-button:hover {
    background-color: #059669;
}

/* FAQ Responsive */
@media (max-width: 768px) {
    .faq-page .category-card {
        flex: 1 1 100%;
    }

    .faq-page .hero-section h1 {
        font-size: 2rem;
    }

    .faq-page .stats-section {
        flex-direction: column;
    }
}

/* Home Page */
.home-page {
    display: flex;
    flex-direction: column;
}

/* Privacy Policy Page */
.privacy-policy-page {
    background-color: #F9FAFB;
}

.privacy-policy-page .hero-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #2563EB;
}

.privacy-policy-page .hero-section h1 {
    margin-bottom: 16px;
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
}

.privacy-policy-page .hero-icon {
    display: flex;
    width: 80px;
    height: 80px;
    margin: 0 auto 24px auto;
    border-radius: 20px;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    background-color: #FFFFFF20;
}

.privacy-policy-page .hero-subtitle {
    max-width: 700px;
    margin: 0 auto;
    color: white;
    font-size: 1.2rem;
}

.privacy-policy-page .content-wrapper {
    display: flex;
    max-width: 1400px;
    padding: 40px 20px;
    margin: 0 auto;
}

.privacy-policy-page .toc-sidebar {
    width: 300px;
    padding: 24px;
    margin-right: 40px;
    border: 1px solid #E5E7EB;
    border-radius: 20px;
    background-color: white;
}

.privacy-policy-page .toc-header {
    margin-bottom: 20px;
}

.privacy-policy-page .toc-header h3 {
    display: inline-block;
    padding: 8px 16px;
    margin-bottom: 12px;
    border-radius: 20px;
    color: white;
    font-size: 1.1rem;
    font-weight: bold;
    background-color: #2563EB;
}

.privacy-policy-page .toc-header p {
    margin: 0;
    color: #2563EB;
    font-size: 0.95rem;
    font-weight: 600;
}

.privacy-policy-page .toc-nav {
    display: flex;
    flex-direction: column;
}

.privacy-policy-page .toc-link {
    display: flex;
    padding: 12px;
    margin-bottom: 8px;
    border: 1px solid #2563EB30;
    border-radius: 8px;
    cursor: pointer;
    align-items: center;
    color: #1F2937;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
}

.privacy-policy-page .toc-link:hover {
    background-color: #2563EB10;
}

.privacy-policy-page .toc-number {
    display: flex;
    width: 28px;
    height: 28px;
    margin-right: 12px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 0.9rem;
    font-weight: bold;
    background-color: #2563EB;
}

.privacy-policy-page .last-updated {
    display: flex;
    padding: 16px;
    margin-top: 24px;
    border-radius: 12px;
    align-items: center;
    background-color: #2563EB10;
}

.privacy-policy-page .last-updated span {
    margin-right: 12px;
    font-size: 1.5rem;
}

.privacy-policy-page .last-updated strong {
    display: block;
    margin-bottom: 4px;
    color: #2563EB;
    font-size: 0.9rem;
    font-weight: bold;
}

.privacy-policy-page .last-updated p {
    margin: 0;
    color: #2563EB;
    font-size: 0.85rem;
    font-weight: 500;
}

.privacy-policy-page .privacy-content {
    padding: 32px;
    border: 1px solid #E5E7EB;
    border-radius: 20px;
    flex: 1 1 auto;
    background-color: white;
}

.privacy-policy-page .content-header {
    margin-bottom: 32px;
}

.privacy-policy-page .content-header h2 {
    display: inline-block;
    padding: 12px 20px;
    margin: 0;
    border-radius: 20px;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    background-color: #2563EB;
}

.privacy-policy-page .privacy-section {
    padding: 24px;
    margin-bottom: 32px;
    border: 1px solid #2563EB20;
    border-radius: 16px;
    background-color: #2563EB05;
}

.privacy-policy-page .privacy-section p {
    margin-bottom: 12px;
    color: #4B5563;
    font-size: 1rem;
    line-height: 1.7em;
}

.privacy-policy-page .privacy-section ul {
    padding-left: 20px;
    margin-top: 12px;
}

.privacy-policy-page .privacy-section li {
    margin-bottom: 12px;
    color: #4B5563;
    font-size: 1rem;
    line-height: 1.7em;
}

.privacy-policy-page .privacy-section a {
    color: #2563EB;
    font-weight: 600;
    text-decoration: underline;
}

.privacy-policy-page .section-header {
    display: flex;
    margin-bottom: 20px;
    align-items: center;
}

.privacy-policy-page .section-header h3 {
    margin: 0;
    color: #2563EB;
    font-size: 1.5rem;
    font-weight: bold;
}

.privacy-policy-page .section-number {
    display: flex;
    width: 40px;
    height: 40px;
    margin-right: 16px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    background-color: #2563EB;
}

/* Privacy Responsive */
@media (max-width: 768px) {
    .privacy-policy-page .content-wrapper {
        flex-direction: column;
    }

    .privacy-policy-page .toc-sidebar {
        width: 100%;
        margin-right: 0;
        margin-bottom: 24px;
    }

    .privacy-policy-page .hero-section h1 {
        font-size: 2rem;
    }
}

/* Terms of Service Page */
.terms-of-service-page {
    background-color: #F9FAFB;
}

.terms-of-service-page .hero-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #059669;
}

.terms-of-service-page .hero-section h1 {
    margin-bottom: 16px;
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
}

.terms-of-service-page .hero-icon {
    display: flex;
    width: 80px;
    height: 80px;
    margin: 0 auto 24px auto;
    border-radius: 20px;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    background-color: #FFFFFF20;
}

.terms-of-service-page .hero-subtitle {
    max-width: 700px;
    margin: 0 auto;
    color: white;
    font-size: 1.2rem;
}

.terms-of-service-page .content-wrapper {
    display: flex;
    max-width: 1400px;
    padding: 40px 20px;
    margin: 0 auto;
}

.terms-of-service-page .toc-sidebar {
    width: 300px;
    padding: 24px;
    margin-right: 40px;
    border: 1px solid #E5E7EB;
    border-radius: 20px;
    background-color: white;
}

.terms-of-service-page .toc-header {
    margin-bottom: 20px;
}

.terms-of-service-page .toc-header h3 {
    display: inline-block;
    padding: 8px 16px;
    margin-bottom: 12px;
    border-radius: 20px;
    color: white;
    font-size: 1.1rem;
    font-weight: bold;
    background-color: #059669;
}

.terms-of-service-page .toc-header p {
    margin: 0;
    color: #059669;
    font-size: 0.95rem;
    font-weight: 600;
}

.terms-of-service-page .toc-nav {
    display: flex;
    flex-direction: column;
}

.terms-of-service-page .toc-link {
    display: flex;
    padding: 12px;
    margin-bottom: 8px;
    border: 1px solid #05966930;
    border-radius: 8px;
    cursor: pointer;
    align-items: center;
    color: #1F2937;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
}

.terms-of-service-page .toc-link:hover {
    background-color: #05966910;
}

.terms-of-service-page .toc-number {
    display: flex;
    width: 28px;
    height: 28px;
    margin-right: 12px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 0.9rem;
    font-weight: bold;
    background-color: #059669;
}

.terms-of-service-page .last-updated {
    display: flex;
    padding: 16px;
    margin-top: 24px;
    border-radius: 12px;
    align-items: center;
    background-color: #05966910;
}

.terms-of-service-page .last-updated span {
    margin-right: 12px;
    font-size: 1.5rem;
}

.terms-of-service-page .last-updated strong {
    display: block;
    margin-bottom: 4px;
    color: #059669;
    font-size: 0.9rem;
    font-weight: bold;
}

.terms-of-service-page .last-updated p {
    margin: 0;
    color: #059669;
    font-size: 0.85rem;
    font-weight: 500;
}

.terms-of-service-page .agreement-notice {
    display: flex;
    padding: 16px;
    margin-top: 16px;
    border: 1px solid #05966930;
    border-radius: 12px;
    align-items: center;
    background-color: #05966910;
}

.terms-of-service-page .agreement-notice span {
    margin-right: 12px;
    font-size: 1.5rem;
}

.terms-of-service-page .agreement-notice strong {
    display: block;
    margin-bottom: 4px;
    color: #059669;
    font-size: 0.9rem;
    font-weight: bold;
}

.terms-of-service-page .agreement-notice p {
    margin: 0;
    color: #059669;
    font-size: 0.8rem;
}

.terms-of-service-page .terms-content {
    padding: 32px;
    border: 1px solid #E5E7EB;
    border-radius: 20px;
    flex: 1 1 auto;
    background-color: white;
}

.terms-of-service-page .content-header {
    margin-bottom: 32px;
}

.terms-of-service-page .content-header h2 {
    display: inline-block;
    padding: 12px 20px;
    margin: 0;
    border-radius: 20px;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    background-color: #059669;
}

.terms-of-service-page .terms-section {
    padding: 24px;
    margin-bottom: 32px;
    border: 1px solid #05966920;
    border-radius: 16px;
    background-color: #05966905;
}

.terms-of-service-page .terms-section p {
    margin: 0;
    color: #4B5563;
    font-size: 1rem;
    line-height: 1.7em;
}

.terms-of-service-page .section-header {
    display: flex;
    margin-bottom: 20px;
    align-items: center;
}

.terms-of-service-page .section-header h3 {
    margin: 0;
    color: #059669;
    font-size: 1.5rem;
    font-weight: bold;
}

.terms-of-service-page .section-number {
    display: flex;
    width: 40px;
    height: 40px;
    margin-right: 16px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    background-color: #059669;
}

/* Terms Responsive */
@media (max-width: 768px) {
    .terms-of-service-page .content-wrapper {
        flex-direction: column;
    }

    .terms-of-service-page .toc-sidebar {
        width: 100%;
        margin-right: 0;
        margin-bottom: 24px;
    }

    .terms-of-service-page .hero-section h1 {
        font-size: 2rem;
    }
}

/* Refund Policy Page */
.refund-policy-page {
    min-height: 100vh;
    background-color: #FFFFFF;
}

.refund-policy-page .hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
    border-radius: 0 0 20px 20px;
}

.refund-policy-page .hero-section h1 {
    font-size: 3rem;
    font-weight: 800;
    margin: 20px 0;
    letter-spacing: -1px;
}

.refund-policy-page .hero-icon {
    font-size: 4rem;
    display: inline-block;
    margin-bottom: 16px;
}

.refund-policy-page .hero-subtitle {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.95;
}

.refund-policy-page .content-wrapper {
    display: flex;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    gap: 40px;
}

.refund-policy-page .toc-sidebar {
    width: 280px;
    flex-shrink: 0;
    position: sticky;
    top: 20px;
    height: fit-content;
}

.refund-policy-page .toc-header {
    background: #F3F4F6;
    border-left: 4px solid #667eea;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.refund-policy-page .toc-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1F2937;
    margin: 0 0 8px 0;
}

.refund-policy-page .toc-header p {
    color: #6B7280;
    font-size: 0.9rem;
    margin: 0;
}

.refund-policy-page .toc-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.refund-policy-page .toc-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #374151;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    border-left: 3px solid transparent;
}

.refund-policy-page .toc-link:hover {
    background-color: #E5E7EB;
    border-left-color: #667eea;
    color: #667eea;
}

.refund-policy-page .toc-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: #667eea;
    color: white;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 600;
    flex-shrink: 0;
}

.refund-policy-page .last-updated {
    background: #ECFDF5;
    border: 1px solid #A7F3D0;
    border-radius: 8px;
    padding: 16px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.refund-policy-page .last-updated span {
    font-size: 1.5rem;
}

.refund-policy-page .last-updated strong {
    display: block;
    color: #047857;
    font-size: 0.85rem;
    font-weight: 600;
}

.refund-policy-page .last-updated p {
    color: #047857;
    font-size: 0.9rem;
    margin: 0;
}

.refund-policy-page .refund-content {
    flex: 1;
    min-width: 0;
}

.refund-policy-page .content-header {
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 2px solid #E5E7EB;
}

.refund-policy-page .content-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #1F2937;
    margin: 0;
}

.refund-policy-page .refund-section {
    margin-bottom: 36px;
    padding: 24px;
    background-color: #F9FAFB;
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.refund-policy-page .refund-section p {
    color: #374151;
    line-height: 1.8;
    font-size: 0.95rem;
    margin: 0;
}

.refund-policy-page .refund-section ul,
.refund-policy-page .refund-section ol {
    margin: 0;
    padding-left: 20px;
}

.refund-policy-page .refund-section li {
    color: #374151;
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.refund-policy-page .refund-section a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.refund-policy-page .refund-section a:hover {
    color: #764ba2;
    text-decoration: underline;
}

.refund-policy-page .section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.refund-policy-page .section-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1F2937;
    margin: 0;
}

.refund-policy-page .section-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    font-size: 0.95rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* Refund Policy Responsive */
@media (max-width: 768px) {
    .refund-policy-page .hero-section {
        padding: 40px 16px;
    }

    .refund-policy-page .hero-section h1 {
        font-size: 2rem;
    }

    .refund-policy-page .hero-icon {
        font-size: 3rem;
    }

    .refund-policy-page .hero-subtitle {
        font-size: 1rem;
    }

    .refund-policy-page .content-wrapper {
        flex-direction: column;
        gap: 0;
        margin: 20px auto;
    }

    .refund-policy-page .toc-sidebar {
        width: 100%;
        position: static;
        margin-bottom: 24px;
    }

    .refund-policy-page .refund-content {
        width: 100%;
    }

    .refund-policy-page .refund-section {
        padding: 16px;
        border-radius: 8px;
    }

    .refund-policy-page .section-header h3 {
        font-size: 1.2rem;
    }

    .refund-policy-page .content-header h2 {
        font-size: 1.5rem;
    }
}

/* Professional Services Section */
.pro-services-section {
    padding: 60px 20px;
    background-color: #F9FAFB;
}

.pro-services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.pro-services-section .section-header {
    margin-bottom: 48px;
    text-align: center;
}

.pro-services-section .header-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    margin-bottom: 16px;
    background-color: #DBEAFE;
    color: #2563EB;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.9rem;
}

.pro-services-section .badge-icon {
    margin-right: 8px;
}

.pro-services-section h2 {
    font-size: 1rem;
    margin: 0;
    color: #2563EB;
}

.pro-services-section .section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 16px;
}

.pro-services-section .section-info-box {
    max-width: 700px;
    margin: 0 auto;
    color: #6B7280;
    line-height: 1.6;
}

/* Services Grid */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 48px;
    justify-content: center;
}

.service-feature {
    flex: 1 1 250px;
    max-width: 300px;
}

.service-feature>div {
    padding: 24px;
    background-color: white;
    border-radius: 16px;
    border: 1px solid #E5E7EB;
    height: 100%;
    transition: transform 0.2s, box-shadow 0.2s;
}

.service-feature:hover>div {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 8px;
}

.feature-description {
    color: #6B7280;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Emergency Contact Box */
.emergency-contact {
    background-color: #FEF2F2;
    border: 1px solid #FEE2E2;
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.emergency-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.emergency-icon {
    font-size: 1.5rem;
    margin-right: 12px;
}

.emergency-contact h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #EF4444;
    margin: 0;
}

.emergency-text {
    color: #4B5563;
    margin-bottom: 24px;
}

.emergency-phone {
    display: inline-flex;
    align-items: center;
    background-color: #EF4444;
    color: white;
    padding: 12px 24px;
    border-radius: 9999px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s;
}

.emergency-phone:hover {
    background-color: #DC2626;
}

.emergency-phone .phone-icon {
    margin-right: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .pro-services-section {
        padding: 40px 20px;
    }

    .pro-services-section .section-title {
        font-size: 1.75rem;
    }

    .services-grid {
        flex-direction: column;
        align-items: center;
    }

    .service-feature {
        width: 100%;
        max-width: 100%;
    }

    .emergency-header {
        flex-direction: column;
    }

    .emergency-icon {
        margin-right: 0;
        margin-bottom: 8px;
    }
}



/* 404 Page Styles */
.not-found-container {
    display: flex;
    min-height: 60vh;
    padding: 40px 20px;
    justify-content: center;
    align-items: center;
    background-color: #F9FAFB;
}

.not-found-content {
    max-width: 600px;
    text-align: center;
}

.not-found-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.btn-outline-primary {
    border: 2px solid #2563EB;
    color: #2563EB;
    background-color: transparent;
}

.btn-outline-primary:hover {
    background-color: #EFF6FF;
}

.error-code {
    margin: 0;
    color: #2563EB;
    font-size: 8rem;
    font-weight: 800;
    line-height: 1;
}

.broken-gear-icon {
    display: inline-block;
    margin: 20px 0;
    font-size: 5rem;
    animation: wobble 2s infinite ease-in-out;
}

.not-found-content h2 {
    margin-bottom: 16px;
    color: #111827;
    font-size: 2rem;
    font-weight: bold;
}

.not-found-content p {
    margin-bottom: 32px;
    color: #6B7280;
    font-size: 1.1rem;
    line-height: 1.6em;
}

@keyframes wobble {
    0% {
        transform: rotate(0deg);
    }

    15% {
        transform: rotate(-15deg);
    }

    30% {
        transform: rotate(10deg);
    }

    45% {
        transform: rotate(-10deg);
    }

    60% {
        transform: rotate(5deg);
    }

    75% {
        transform: rotate(-5deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

@media (max-width: 768px) {
    .error-code {
        font-size: 6rem;
    }

    .not-found-content h2 {
        font-size: 1.5rem;
    }
}

/* Logo Styles */
.logo-img {
    height: 40px;
    width: auto;
    display: block;
}

.footer-logo {
    height: 60px;
    margin-bottom: 16px;
}

/* Support Form Styles */
.support-form-section {
    padding: 60px 20px;
    background-color: white;
    max-width: 800px;
    margin: 0 auto;
}

.support-form-section h2 {
    text-align: center;
    color: #1F2937;
    margin-bottom: 12px;
}

.form-description {
    text-align: center;
    color: #6B7280;
    margin-bottom: 40px;
}

.support-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.form-group label {
    font-weight: 500;
    color: #374151;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    color: #1F2937;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563EB;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    margin-top: 12px;
    padding: 14px 28px;
    background-color: #2563EB;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background-color 0.2s;
    align-self: flex-start;
}

.submit-button:hover {
    background-color: #1D4ED8;
}

/* Responsive Support Form */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 20px;
    }

    .submit-button {
        width: 100%;
    }
}

/* Support Form Styles */
.support-form-section {
    padding: 60px 20px;
    background-color: white;
    max-width: 800px;
    margin: 0 auto;
}

.support-form-section h2 {
    text-align: center;
    color: #1F2937;
    margin-bottom: 12px;
}

.form-description {
    text-align: center;
    color: #6B7280;
    margin-bottom: 40px;
}

.support-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.form-group label {
    font-weight: 500;
    color: #374151;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    color: #1F2937;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563EB;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    margin-top: 12px;
    padding: 14px 28px;
    background-color: #2563EB;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background-color 0.2s;
    align-self: flex-start;
}

.submit-button:hover {
    background-color: #1D4ED8;
}

/* Responsive Support Form */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 20px;
    }

    .submit-button {
        width: 100%;
    }
}


/* Guest Booking Styles */
.guest-booking-page {
    padding-bottom: 60px;
    background-color: #F3F4F6;
    min-height: 80vh;
}

.page-header {
    background-color: #1E293B;
    color: white;
    padding: 60px 20px;
    text-align: center;
    margin-bottom: 40px;
}

.page-header h1 {
    margin: 0 0 16px 0;
    font-size: 2.5rem;
}

.page-header p {
    color: #94A3B8;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.booking-form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.booking-form {
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    padding: 40px;
}

.form-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #E5E7EB;
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.form-section h3 {
    display: flex;
    align-items: center;
    color: #1E293B;
    font-size: 1.25rem;
    margin-bottom: 24px;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #2563EB;
    color: white;
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: bold;
    margin-right: 12px;
}

.form-select {
    padding: 12px;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    background-color: white;
    font-size: 1rem;
    color: #1F2937;
    cursor: pointer;
}

.form-select:focus {
    outline: none;
    border-color: #2563EB;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.full-width {
    width: 100%;
}

.form-note {
    text-align: center;
    color: #6B7280;
    font-size: 0.85rem;
    margin-top: 16px;
}

@media (max-width: 768px) {
    .booking-form {
        padding: 20px;
    }

    .page-header {
        padding: 40px 20px;
    }

    .page-header h1 {
        font-size: 2rem;
    }
}