/* Reset & Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #ffffff;
    color: #1a1a1a;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Color Variables */
:root {
    --primary: #0cb3c5;
    --primary-dark: #0a9baa;
    --primary-light: #0ec8dd;
    --primary-combined: #153b75;
    --secondary: #0A2239;
    --secondary-light: #1a3a5a;
    --text-primary: #1a1a1a;
    --text-secondary: #4a5568;
    --text-light: #718096;
    --bg-white: #ffffff;
    --bg-light: #f7fafc;
    --bg-gray: #edf2f7;
    --bg-dark: #153b75;
    --border: #e2e8f0;
    --accent: #0cb3c5;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 2rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 3rem;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border-bottom-color: var(--border);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

@media (min-width: 640px) {
    .nav-container {
        padding: 0 2rem;
    }
}

@media (min-width: 1024px) {
    .nav-container {
        padding: 0 3rem;
    }
}

.nav-logo a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s;
}

.logo-svg {
    height: 32px;
    width: auto;
    transition: all 0.3s;
    max-width: 180px;
}

@media (max-width: 767px) {
    .logo-svg {
        height: 28px;
        max-width: 130px;
    }
}

.nav-logo a:hover .logo-svg {
    transform: translateX(2px);
    opacity: 0.9;
}

.nav-menu {
    display: none;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    transition: all 0.3s;
    position: relative;
    text-transform: uppercase;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link.active {
    color: var(--primary);
}

.nav-link.active::after,
.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    background-color: var(--primary);
    color: #ffffff;
    padding: 0.625rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 128, 128, 0.2);
}

.nav-cta:hover {
    background-color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 128, 128, 0.3);
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }
}

.nav-toggle span {
    width: 26px;
    height: 2.5px;
    background-color: var(--text-primary);
    transition: all 0.3s;
    border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
@media (max-width: 767px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background-color: #ffffff;
        flex-direction: column;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
        border-top: 1px solid var(--border);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        display: none;
        transform: translateY(-20px);
        opacity: 0;
        transition: all 0.3s;
    }
    
    .nav-menu.active {
        display: flex;
        transform: translateY(0);
        opacity: 1;
    }
    
    .nav-menu .nav-cta {
        width: 100%;
        text-align: center;
        margin-top: 0.5rem;
    }
}

/* Hero Section */
.hero {
    padding-top: 120px;
    padding-bottom: 120px;
    background: linear-gradient(180deg, #ffffff 0%, #f7fafc 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-pattern {
    position: absolute;
    top: 0;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 128, 128, 0.06) 0%, rgba(21, 59, 117, 0.04) 50%, transparent 70%);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@media (min-width: 1024px) {
    .hero {
        padding-top: 140px;
        padding-bottom: 140px;
        min-height: 95vh;
    }
}

.hero .container {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1.2fr;
        gap: 6rem;
    }
}

.hero-content {
    max-width: 100%;
}

@media (min-width: 1024px) {
    .hero-content {
        max-width: 550px;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: linear-gradient(135deg, rgba(0, 128, 128, 0.1) 0%, rgba(0, 128, 128, 0.05) 100%);
    color: var(--primary);
    border: 1px solid rgba(0, 128, 128, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.badge-icon {
    font-size: 1rem;
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 2.25rem;
    }
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-combined) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    max-width: 540px;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1rem;
    }
}

.hero-description strong {
    color: var(--text-primary);
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        gap: 1.25rem;
    }
}

.hero-image {
    position: relative;
}

.image-wrapper {
    aspect-ratio: 16/10;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2);
    background-color: var(--bg-gray);
    position: relative;
}

@media (min-width: 1024px) {
    .image-wrapper {
        aspect-ratio: 4/3;
    }
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 128, 128, 0.1) 100%);
    z-index: 1;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.hero-image:hover .image-wrapper img {
    transform: scale(1.08);
}

.hero-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 128, 128, 0.3);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 2;
    max-width: 280px;
}

@media (max-width: 1023px) {
    .hero-card {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: -40px;
        margin-left: auto;
        margin-right: auto;
    }
}

.card-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-icon svg {
    width: 24px;
    height: 24px;
    color: #ffffff;
}

.card-content {
    flex: 1;
}

.card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.card-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.hero-stat {
    flex: 1;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-combined) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    border: 2px solid transparent;
    text-align: center;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 128, 128, 0.25);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 128, 128, 0.35);
}

.btn-secondary {
    border: 2px solid var(--border);
    color: var(--text-primary);
    background-color: #ffffff;
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    background-color: rgba(0, 128, 128, 0.05);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background-color: transparent;
}

.btn-outline:hover {
    background-color: var(--primary);
    color: #ffffff;
}

.btn-large {
    padding: 1rem 2.25rem;
    font-size: 1rem;
}

.btn svg {
    width: 1.125rem;
    height: 1.125rem;
}

/* Emergency Service */
.emergency {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(0, 128, 128, 0.05) 0%, rgba(10, 34, 57, 0.05) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.emergency-box {
    background: linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);
    border: 1px solid var(--border);
    border-left: 4px solid var(--primary);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 768px) {
    .emergency-box {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 3rem;
    }
}

.emergency-content {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.emergency-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 128, 128, 0.25);
}

.emergency-icon svg {
    width: 28px;
    height: 28px;
    color: #ffffff;
}

.emergency-text {
    flex: 1;
}

.emergency-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.emergency-text h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
    .emergency-text h2 {
        font-size: 2rem;
    }
}

.emergency-text p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.emergency-button {
    flex-shrink: 0;
}

/* Services Section */
.services {
    padding: 2rem 0;
    background-color: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

@media (min-width: 1024px) {
    .section-header {
        margin-bottom: 5rem;
    }
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgb(28, 60, 114);
    color: #fff;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3.5rem;
    }
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

@media (min-width: 768px) {
    .section-description {
        font-size: 1.25rem;
    }
}

.services-grid {
    display: grid;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .services-grid.services-grid-2col {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

.services-visual-section {
    margin-bottom: 5rem;
}

.services-visual-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .services-visual-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .services-visual-grid {
        gap: 2rem;
    }
}

.service-visual-item {
    position: relative;
    aspect-ratio: 16/10;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

@media (min-width: 640px) {
    .service-visual-item {
        aspect-ratio: 4/3;
        border-radius: 16px;
    }
}

.service-visual-item:hover {
    transform: translateY(-4px);
}

.service-visual-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.service-visual-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-visual-item:hover .service-visual-image img {
    transform: scale(1.1);
}

.service-visual-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.85) 100%);
    padding: 1.25rem;
    color: #ffffff;
}

@media (min-width: 640px) {
    .service-visual-overlay {
        padding: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .service-visual-overlay {
        padding: 2rem;
    }
}

.service-visual-overlay h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

@media (min-width: 640px) {
    .service-visual-overlay h3 {
        font-size: 1.5rem;
    }
}

.service-visual-overlay p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

@media (min-width: 640px) {
    .service-visual-overlay p {
        font-size: 1rem;
        line-height: 1.6;
    }
}

.service-card {
    background-color: #ffffff;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.service-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 128, 128, 0.15);
}

.service-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 4rem;
    font-weight: 800;
    color: rgba(0, 128, 128, 0.08);
    line-height: 1;
    z-index: 1;
}

.service-image {
    aspect-ratio: 16/10;
    overflow: hidden;
    background-color: var(--bg-gray);
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    transition: color 0.3s;
}

.service-card:hover .service-content h3 {
    color: var(--primary);
}

.service-content > p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.service-features svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Metrics Section */
.metrics {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f7fafc 0%, #ffffff 100%);
}

@media (min-width: 1024px) {
    .metrics {
        padding: 8rem 0;
    }
}

.metrics-grid {
    display: grid;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .metrics-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 3rem;
    }
}

.metric-card {
    text-align: center;
    padding: 3rem 2rem;
    background-color: #ffffff;
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all 0.4s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.metric-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 128, 128, 0.15);
}

.metric-number {
    font-size: 4.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-combined) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 1rem;
    line-height: 1;
}

@media (min-width: 768px) {
    .metric-number {
        font-size: 5rem;
    }
}

.metric-label {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.metric-description {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background-color: #ffffff;
}

@media (min-width: 1024px) {
    .features {
        padding: 8rem 0;
    }
}

.features-grid {
    display: grid;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-item {
    padding: 2rem;
    background-color: #f7fafc;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background-color: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 128, 128, 0.2);
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    color: #ffffff;
}

.feature-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.feature-item p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* CTA Section */
.cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-combined) 0%, var(--secondary) 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.cta-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    filter: grayscale(100%);
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 128, 128, 0.2) 0%, rgba(21, 59, 117, 0.1) 50%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

@media (min-width: 1024px) {
    .cta {
        padding: 8rem 0;
    }
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 3rem;
    }
}

.cta-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

@media (min-width: 768px) {
    .cta-description {
        font-size: 1.25rem;
    }
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

.cta-info {
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-info-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.cta-info-item svg {
    width: 20px;
    height: 20px;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #0a2239 0%, #1a1a1a 100%);
    color: #ffffff;
    padding: 5rem 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 128, 128, 0.5) 50%, transparent 100%);
}

.footer-main {
    padding-bottom: 4rem;
}

.footer-grid {
    display: grid;
    gap: 3rem;
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1.5fr;
        gap: 4rem;
    }
}

.footer-brand {
    position: relative;
}

.footer-brand h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-brand h3::before {
    content: '';
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: inline-block;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 400px;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    color: rgba(255, 255, 255, 0.8);
}

.footer-social a:hover {
    background-color: var(--primary);
    color: #ffffff;
    transform: translateY(-2px);
}

.footer-column h4 {
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, transparent 100%);
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-column ul li {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-column ul li a::before {
    content: '→';
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s;
    color: var(--primary);
}

.footer-column ul li a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.footer-column ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-contact {
    background-color: rgba(0, 128, 128, 0.1);
    border: 1px solid rgba(0, 128, 128, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
}

.footer-contact h4 {
    margin-bottom: 1rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
}

.footer-contact-item:last-child {
    margin-bottom: 0;
}

.footer-contact-item svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
}

.footer-contact-item a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s;
    margin: 0 0.5rem;
}

.footer-bottom a:hover {
    color: var(--primary-light);
}

.footer-bottom br {
    display: block;
    margin: 0.5rem 0;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Page Header */
.page-header {
    padding: 120px 0 60px;
    background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
    border-bottom: 1px solid var(--border);
}

.page-header-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.page-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgb(28, 60, 114);
    color: #fff;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.page-header-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .page-header-content h1 {
        font-size: 3rem;
    }
}

.page-header-content > p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* Service Details */
.service-details {
    padding: 6rem 0;
    background-color: #ffffff;
}

.service-detail-section {
    margin-bottom: 8rem;
    min-height: 100vh;
}

.service-detail-section:last-child {
    margin-bottom: 0;
}

.service-detail-grid {
    display: grid;
    gap: 4rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .service-detail-grid {
        grid-template-columns: 1fr 1fr;
        gap: 6rem;
    }
    
    .service-detail-grid.reverse {
        direction: rtl;
    }
    
    .service-detail-grid.reverse > * {
        direction: ltr;
    }
}

.service-detail-number {
    font-size: 6rem;
    font-weight: 800;
    color: rgba(0, 128, 128, 0.1);
    line-height: 1;
    margin-bottom: 1rem;
}

.service-detail-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.service-detail-intro {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.service-detail-features {
    display: grid;
    gap: 1.5rem;
}

.feature-box {
    padding: 1.5rem;
    background-color: #f7fafc;
    border-radius: 12px;
    transition: all 0.3s;
}

.feature-box:hover {
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.feature-box h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.feature-box p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.service-detail-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    position: relative;
}

@media (min-width: 1024px) {
    .service-detail-image {
        position: sticky;
        top: 100px;
        align-self: start;
    }
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    margin-top: 1.5rem;
    transition: gap 0.3s;
}

.service-link:hover {
    gap: 0.75rem;
}

.services-cta {
    text-align: center;
    margin-top: 4rem;
}

/* About Page */
.about-content {
    padding: 6rem 0;
    background-color: #ffffff;
}

.about-intro {
    display: grid;
    gap: 4rem;
    margin-bottom: 6rem;
}

@media (min-width: 1024px) {
    .about-intro {
        grid-template-columns: 1.2fr 1fr;
        gap: 6rem;
    }
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.about-text p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.values-section {
    margin-bottom: 6rem;
}

.values-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 3rem;
    text-align: center;
    letter-spacing: -0.02em;
}

.values-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.value-item {
    text-align: center;
    padding: 2rem;
}

.value-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 128, 128, 0.25);
}

.value-icon svg {
    width: 32px;
    height: 32px;
    color: #ffffff;
}

.value-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.value-item p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.stats-section {
    background: linear-gradient(135deg, #f7fafc 0%, #ffffff 100%);
    padding: 4rem 2rem;
    border-radius: 16px;
}

.stats-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-combined) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Contact Form */
.contact-section {
    padding: 6rem 0;
    background-color: #ffffff;
}

.contact-grid {
    display: grid;
    gap: 4rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1.2fr 1fr;
        gap: 6rem;
    }
}

.contact-form-wrapper h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.form-intro {
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1.25rem;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
    background-color: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 128, 128, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-group label {
    font-weight: 400;
    font-size: 0.9rem;
    line-height: 1.6;
}

.checkbox-group a {
    color: var(--primary);
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

.form-success {
    text-align: center;
    padding: 3rem 2rem;
    background-color: #f0fdf4;
    border: 2px solid #86efac;
    border-radius: 12px;
}

.success-icon {
    width: 64px;
    height: 64px;
    background-color: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.success-icon svg {
    width: 32px;
    height: 32px;
    color: #ffffff;
}

.form-success h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.form-success p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.contact-info-card {
    background-color: #f7fafc;
    padding: 2.5rem;
    border-radius: 16px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.contact-info-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: #ffffff;
}

.contact-item h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0.25rem;
}

.contact-item a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-note {
    font-size: 0.875rem;
    color: var(--text-light);
    font-style: italic;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background-color: #ffffff;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 4rem;
}

.faq-category:last-child {
    margin-bottom: 0;
}

.faq-category h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border);
    letter-spacing: -0.02em;
}

.faq-item {
    background-color: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(0, 128, 128, 0.1);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    flex: 1;
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: var(--primary);
    flex-shrink: 0;
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.faq-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #f7fafc 0%, #ffffff 100%);
    border-radius: 16px;
}

.faq-cta h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.faq-cta p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* Active Nav Link */
.nav-link.active {
    color: var(--primary);
    font-weight: 600;
}

.nav-link.active::after {
    width: 100%;
}

/* Industries Section */
.industries {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--primary-combined) 0%, #0f2d5a 100%);
    color: #ffffff;
}

@media (min-width: 1024px) {
    .industries {
        padding: 8rem 0;
    }
}

.industries .section-header {
    margin-bottom: 4rem;
}

.industries .section-title,
.industries .section-description {
    color: #ffffff;
}

/* Industries section badge uses same style as general section-badge */
.industries .section-badge {
    background-color: rgb(28, 60, 114);
    color: #fff;
}

.industries-visual-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .industries-visual-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 768px) {
    .industries-visual-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.industry-visual-item {
    position: relative;
    aspect-ratio: 16/10;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

@media (min-width: 640px) {
    .industry-visual-item {
        aspect-ratio: 4/3;
        border-radius: 16px;
    }
}

.industry-visual-item:hover {
    transform: translateY(-4px);
}

.industry-visual-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.industry-visual-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.industry-visual-item:hover .industry-visual-image img {
    transform: scale(1.1);
}

.industry-visual-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.85) 100%);
    padding: 1.25rem;
    color: #ffffff;
}

@media (min-width: 640px) {
    .industry-visual-overlay {
        padding: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .industry-visual-overlay {
        padding: 2rem;
    }
}

.industry-visual-overlay h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: #ffffff;
}

@media (min-width: 640px) {
    .industry-visual-overlay h3 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
}

.industry-visual-overlay p {
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease;
}

@media (min-width: 640px) {
    .industry-visual-overlay p {
        font-size: 0.95rem;
        line-height: 1.6;
        opacity: 0;
        transform: translateY(10px);
    }
    
    .industry-visual-item:hover .industry-visual-overlay p {
        opacity: 1;
        transform: translateY(0);
    }
}

.industry-visual-item:hover .industry-visual-overlay p {
    opacity: 1;
    transform: translateY(0);
}

/* References Section */
.references {
    padding: 6rem 0;
    background-color: #ffffff;
}

@media (min-width: 1024px) {
    .references {
        padding: 8rem 0;
    }
}

.references-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .references-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 3rem;
    }
}

.reference-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background-color: #f7fafc;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    min-height: 120px;
}

.reference-item:hover {
    background-color: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(0, 128, 128, 0.1);
    transform: translateY(-4px);
}

.reference-logo {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.reference-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.reference-item:hover .reference-img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* Home FAQ Section */
.home-faq {
    padding: 6rem 0;
    background-color: #f7fafc;
}

@media (min-width: 1024px) {
    .home-faq {
        padding: 8rem 0;
    }
}

.home-faq-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}


.home-faq-item {
    background-color: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

.home-faq-item:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(0, 128, 128, 0.1);
}

.home-faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.home-faq-question h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    flex: 1;
}

.home-faq-item .faq-icon {
    width: 24px;
    height: 24px;
    color: var(--primary);
    flex-shrink: 0;
    transition: transform 0.3s;
}

.home-faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.home-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

.home-faq-item.active .home-faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.home-faq-answer p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Legal Content */
.legal-content {
    padding: 6rem 0;
    background-color: #ffffff;
}

.legal-text {
    max-width: 900px;
    margin: 0 auto;
}

.legal-text h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.legal-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.legal-text ul {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-text li {
    margin-bottom: 0.5rem;
}

.legal-text a {
    color: var(--primary);
    text-decoration: none;
}

.legal-text a:hover {
    text-decoration: underline;
}

.legal-text strong {
    color: var(--text-primary);
    font-weight: 600;
}
