/* Reset and Base Styles */
:root {
    --primary-color: #1a365d;
    --secondary-color: #2d5a87;
    --accent-color: #4299e1;
    --light-color: #ffffff;
    --dark-color: #2d3748;
    --gray-color: #f7fafc;
    --text-muted: #718096;
    --border-color: #e2e8f0;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body, .site-body {
    background: var(--light-color);
    font-family: 'Inter', sans-serif;
    color: var(--dark-color);
    line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

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

/* Navigation */
.navbar.nav-main {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.5rem;
}

.logo-img {
    height: 50px;
    transition: var(--transition);
}

.nav-list {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-item {
    position: relative;
}

.dropdown {
    position: relative;
}

.nav-link {
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

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

.nav-link i {
    font-size: 0.75rem;
    transition: var(--transition);
}

.dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--light-color);
    min-width: 250px;
    white-space: nowrap;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    list-style: none;
    padding: 0.5rem 0;
    z-index: 1001;
    margin-top: 0.5rem;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--dark-color);
    text-decoration: none;
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background: var(--gray-color);
    color: var(--accent-color);
}

.consultation-btn {
    background: var(--accent-color);
    color: var(--light-color);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.consultation-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark-color);
    cursor: pointer;
    transition: var(--transition);
}

.nav-toggle:hover {
    color: var(--accent-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--light-color);
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(66, 153, 225, 0.3);
}

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

.btn-secondary:hover {
    background: var(--accent-color);
    color: var(--light-color);
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: var(--light-color);
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: none;
    transform: scale(1.05);
    will-change: transform;
    animation: heroZoomPan 18s ease-in-out infinite alternate;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
        width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.55) 0%, rgba(45, 90, 135, 0.4) 100%);
    z-index: 2;
    }
    
.hero-shapes {
    position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    z-index: 3;
    pointer-events: none;
    display: none; /* Simplify hero by removing extra blobs */
}

.shape {
    position: absolute;
    border-radius: 50% 30% 70% 40%;
    opacity: 0.7;
    animation: float 8s ease-in-out infinite;
    filter: blur(1px);
}

.shape-1 {
    width: 300px;
    height: 200px;
    background: linear-gradient(135deg, #4299e1, #3182ce);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 250px;
    height: 180px;
    background: linear-gradient(135deg, #ed8936, #dd6b20);
    top: 60%;
    left: 10%;
    animation-delay: 2s;
}

.shape-3 {
    width: 400px;
    height: 250px;
    background: linear-gradient(135deg, #9f7aea, #805ad5);
    top: 20%;
    right: 5%;
    animation-delay: 4s;
}

.shape-4 {
    width: 200px;
    height: 150px;
    background: linear-gradient(135deg, #f56565, #e53e3e);
    top: 70%;
    right: 15%;
    animation-delay: 1s;
}

.shape-5 {
    width: 350px;
    height: 200px;
    background: linear-gradient(135deg, #48bb78, #38a169);
    top: 40%;
    left: 50%;
    animation-delay: 3s;
}

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

.hero-content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
    animation: fadeUp 800ms ease-out both;
}

.hero-title {
    font-size: 9rem;
    font-weight: 900;
    font-family: 'Inter', 'Arial Black', sans-serif;
    margin-bottom: 0.5rem;
    color: var(--light-color);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
    line-height: 0.9;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 6rem;
    font-weight: 800;
    font-family: 'Inter', 'Arial Black', sans-serif;
    margin-bottom: 1.5rem;
    color: var(--light-color);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
    line-height: 0.9;
    letter-spacing: -0.02em;
}

.hero-desc {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--light-color);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
    font-weight: 500;
    letter-spacing: -0.01em;
}

.hero-desc-small {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    color: var(--light-color);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    font-weight: 400;
    opacity: 0.95;
}

.hero-btn {
    font-size: 1.2rem;
    padding: 1.5rem 3rem;
    background: var(--accent-color);
    border: none;
    box-shadow: 0 10px 30px rgba(66, 153, 225, 0.4);
}

.hero-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(66, 153, 225, 0.5);
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 4;
    display: none; /* Remove decorative wave for a cleaner look */
}

.hero-wave svg {
    width: 100%;
    height: 100%;
}

.contact-cta-btn:hover {
    background: #c53030;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(229, 62, 62, 0.4);
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes heroZoomPan {
    0% { transform: scale(1.05) translateY(0); }
    100% { transform: scale(1.12) translateY(-2%); }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 2rem;
}

/* About Section */
.about-section {
    padding: 2.5rem 0;
    background: var(--light-color);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(66, 153, 225, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(45, 90, 135, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.about-container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
}

.about-content-full {
    text-align: center;
    max-width: 1400px;
    margin: 0 auto 1rem;
}

/* Tighten hero text spacing to fit grid nicely */
.about-section .section-subtitle {
    margin-bottom: 0.75rem;
}
.about-section .about-desc {
    margin-bottom: 1rem;
}

.services-grid-full {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: repeat(2, auto);
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-desc {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.services-list {
    margin-bottom: 2rem;
}

.service-list-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.75rem 0;
}

.service-list-item i {
    color: var(--accent-color);
    font-size: 1rem;
    width: 20px;
    flex-shrink: 0;
}

.service-list-item span {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 1rem;
}

.services-visual {
    position: relative;
}

.services-visual .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 1.5rem;
    }

/* Services Section */
.services-section {
    padding: 6rem 0;
    background: var(--gray-color);
}

.services-container .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    display: block;
    background: var(--light-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
    transform: translateY(0);
    text-decoration: none;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(66, 153, 225, 0.1) 0%, rgba(45, 90, 135, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card .service-image img {
    transition: transform 0.35s ease;
}

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

.service-card:hover .service-content h3 {
    color: var(--accent-color);
    transform: translateY(-2px);
}

.service-card:hover .service-link {
    color: var(--accent-color);
    transform: translateX(4px);
}

.service-card:hover .service-link i {
    transform: translateX(4px);
}

.service-image {
    aspect-ratio: 16 / 9;
    width: 100%;
    overflow: hidden;
    position: relative;
    display: block;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.35s ease;
    display: block;
}

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

.service-content {
    padding: 0.5rem 0.75rem 0.75rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.service-content h3 {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 700;
    margin: 0;
    transition: color 0.3s ease;
    text-transform: capitalize;
    text-align: center;
}

.service-link { display: none; }

/* Process Section */
.process-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 3rem 0;
    background: var(--light-color);
}

.process-container {
    text-align: center;
}

.process-steps.timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: start;
    gap: 2rem;
    margin: 3rem 0 2rem;
}

.process-steps.timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, rgba(66,153,225,0.25), rgba(45,90,135,0.25));
}

.process-step {
    text-align: center;
    padding: 1.5rem 1rem 1rem;
    position: relative;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--light-color);
    border: 4px solid var(--accent-color);
    z-index: 2;
}

.step-number {
    display: none;
}

.process-step h3 {
    font-size: 1.125rem;
    color: var(--dark-color);
    margin: 2.25rem 0 0.5rem;
}

.step-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 320px;
    margin: 0.25rem auto 0;
}

/* Innovation Section */
.innovation-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #1a1a1a;
}

.innovation-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.innovation-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: none;
}

.innovation-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.4) 0%, rgba(45, 45, 45, 0.3) 100%);
    z-index: 2;
}

.innovation-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.innovation-shape {
    position: absolute;
    border-radius: 50% 30% 70% 40%;
    opacity: 0.8;
    animation: float 10s ease-in-out infinite;
    filter: blur(1px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.innovation-shape-1 {
    width: 400px;
    height: 300px;
    background: linear-gradient(135deg, #ff6b9d, #ff8fab);
    top: -10%;
    left: -5%;
    animation-delay: 0s;
}

.innovation-shape-2 {
    width: 350px;
    height: 250px;
    background: linear-gradient(135deg, #20bf6b, #26de81);
    top: -5%;
    right: -8%;
    animation-delay: 3s;
}

.innovation-container {
    position: relative;
    z-index: 4;
    width: 100%;
}

.innovation-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 100vh;
}

.innovation-content {
    text-align: left;
    max-width: 600px;
}

.innovation-title {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: 'Inter', 'Arial Black', sans-serif;
    margin-bottom: 2rem;
    color: var(--light-color);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.innovation-desc {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--light-color);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    font-weight: 400;
    line-height: 1.6;
    opacity: 0.95;
}

.innovation-btn {
    font-size: 1.125rem;
    padding: 1.25rem 2.5rem;
    background: var(--accent-color);
    border: none;
    box-shadow: 0 8px 25px rgba(66, 153, 225, 0.4);
    border-radius: 8px;
}

/* Innovation 2 Section */
.innovation-2-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #1a1a1a;
}

.innovation-2-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.innovation-2-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: none;
}

.innovation-2-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.4) 0%, rgba(45, 45, 45, 0.3) 100%);
    z-index: 2;
}

.innovation-2-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.innovation-2-shape {
    position: absolute;
    border-radius: 50% 30% 70% 40%;
    opacity: 0.8;
    animation: float 12s ease-in-out infinite;
    filter: blur(1px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.innovation-2-shape-1 {
    width: 350px;
    height: 280px;
    background: linear-gradient(135deg, #ff9a9e, #fecfef);
    top: -8%;
    left: -3%;
    animation-delay: 2s;
}

.innovation-2-shape-2 {
    width: 400px;
    height: 300px;
    background: linear-gradient(135deg, #a8edea, #fed6e3);
    top: -12%;
    right: -5%;
    animation-delay: 5s;
}

.innovation-2-container {
    position: relative;
    z-index: 4;
    width: 100%;
}

.innovation-2-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 100vh;
}

.innovation-2-content {
    text-align: right;
    max-width: 600px;
    justify-self: end;
}

.innovation-2-title {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: 'Inter', 'Arial Black', sans-serif;
    margin-bottom: 2rem;
    color: var(--light-color);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.innovation-2-desc {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--light-color);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    font-weight: 400;
    line-height: 1.6;
    opacity: 0.95;
}

.innovation-2-btn {
    font-size: 1.125rem;
    padding: 1.25rem 2.5rem;
    background: var(--accent-color);
    border: none;
    box-shadow: 0 8px 25px rgba(66, 153, 225, 0.4);
    border-radius: 8px;
}

/* Newsletter Section */
.newsletter-section {
        padding: 4rem 0;
    background: var(--primary-color);
    color: var(--light-color);
}

.newsletter-container {
    text-align: center;
}

.newsletter-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--light-color);
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    align-items: center;
}

.newsletter-input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    outline: none;
}

.newsletter-btn {
    padding: 1rem 2rem;
    white-space: nowrap;
}

/* Contact Section */
.contact-section {
        padding: 4rem 0;
    background: var(--light-color);
}

.contact-container {
    text-align: center;
}

.contact-title {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 2rem;
}

.contact-title-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease, opacity 0.3s ease;
    cursor: pointer;
}

.contact-title-link:hover {
    color: var(--primary-color, #2563eb);
    opacity: 0.9;
}

.contact-title-link:focus {
    outline: 2px solid var(--primary-color, #2563eb);
    outline-offset: 2px;
    border-radius: 2px;
}

.contact-info {
    margin-top: 2rem;
}

.contact-email {
    font-size: 1.25rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.contact-address {
    font-size: 1rem;
    color: var(--text-muted);
}

/* Footer */
.footer-section {
    background: var(--primary-color);
    color: var(--light-color);
    padding: 4rem 0 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col {
    margin-bottom: 2rem;
}

.footer-logo-img {
    height: 60px;
    margin-bottom: 1rem;
}

.footer-title {
    color: var(--light-color);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

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

.quote {
    margin-top: 1rem;
}

.quote p {
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    
    .nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
    align-items: center;
        gap: 2rem;
        transition: right 0.4s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        padding: 2rem;
        z-index: 1000;
    }
    
    .nav-list.active {
        right: 0;
    }
    
    .consultation-btn {
        display: none;
    }
    
    .hero-title {
        font-size: 5rem;
    }
    
    .hero-subtitle {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid-full {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, auto);
        gap: 1rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-bottom {
        flex-direction: column;
    text-align: center;
}
    
    .hero-title {
        font-size: 5rem;
    }
    
    .hero-subtitle {
        font-size: 3.5rem;
    }
    
    .hero-desc {
        font-size: 2rem;
    }
    
    .hero-desc-small {
        font-size: 1.2rem;
    }
    
    .hero-cta {
        bottom: 1rem;
        right: 1rem;
    }
    
    .contact-cta-btn {
    padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 1024px) {
    .process-steps.timeline {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem 2rem;
    }
    .process-steps.timeline::before {
        display: none;
    }
    .process-step::before {
        top: 0;
    }
}

@media (max-width: 560px) {
    .process-steps.timeline {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--light-color);
    padding: 8rem 0 4rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--light-color);
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 6rem 0;
    background: var(--light-color);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.mission-vision-card {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--primary-color);
}

.mission-vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.mission-card {
    border-top-color: var(--primary-color);
}

.vision-card {
    border-top-color: var(--accent-color);
}

.mission-vision-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: inline-block;
}

.vision-card .mission-vision-icon {
    color: var(--accent-color);
}

.mission-vision-card h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.mission-vision-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-muted);
    font-weight: 400;
}

@media (max-width: 768px) {
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mission-vision-card {
        padding: 2rem;
    }
    
    .mission-vision-card h2 {
        font-size: 2rem;
    }
}

/* Values Section */
.values-section {
    padding: 6rem 0;
    background: var(--gray-color);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--light-color);
    font-size: 2rem;
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Team Section */
.team-section {
    padding: 6rem 0;
    background: var(--light-color);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background: var(--light-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.member-photo {
    height: 250px;
    background: var(--gray-color);
    position: relative;
    overflow: hidden;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: var(--text-muted);
}

.member-content {
    padding: 2rem;
}

.member-title {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-bio {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Global Section */
.global-section {
    padding: 6rem 0;
    background: var(--gray-color);
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.office-card {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.office-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.office-card p {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

/* Client Stats Section */
.client-stats-section {
    padding: 4rem 0;
    background: var(--light-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: var(--gray-color);
    border-radius: 12px;
}

.stat-card h3 {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: var(--text-muted);
    font-weight: 500;
}

/* Industries Section */
.industries-section {
    padding: 6rem 0;
    background: var(--gray-color);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    margin-top: 3rem;
}

.industry-card {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.industry-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
        margin-bottom: 1.5rem;
    color: var(--light-color);
    font-size: 1.5rem;
}

.industry-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.industry-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Success Stories Section */
.success-stories-section {
    padding: 6rem 0;
    background: var(--light-color);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.story-card {
    background: var(--light-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.story-image {
    height: 200px;
    background: var(--gray-color);
    position: relative;
    overflow: hidden;
}

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

.story-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: var(--text-muted);
}

.story-content {
    padding: 2rem;
}

.story-industry {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.story-results {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.result-item {
    background: var(--accent-color);
    color: var(--light-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Client Testimonials Section */
.client-testimonials-section {
    padding: 6rem 0;
    background: var(--gray-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--accent-color);
    font-family: serif;
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    color: var(--text-muted);
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author h4 {
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.testimonial-author p {
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Global Reach Section */
.global-reach-section {
    padding: 6rem 0;
    background: var(--light-color);
}

.regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    margin-top: 3rem;
}

.region-card {
    background: var(--gray-color);
    padding: 2rem;
    border-radius: 12px;
        text-align: center;
    }

.region-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.region-card p {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.region-card ul {
    list-style: none;
    padding: 0;
}

.region-card li {
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

/* Services Overview Section */
.services-overview-section {
    padding: 6rem 0;
    background: var(--light-color);
}

.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.services-intro h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.services-intro p {
    color: var(--text-muted);
    font-size: 1.125rem;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card-large {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.service-card-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--light-color);
    font-size: 2rem;
}

.service-card-large h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card-large p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.service-features li {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Approach Section */
.approach-section {
    padding: 6rem 0;
    background: var(--gray-color);
}

.approach-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.approach-step {
    text-align: center;
    padding: 2rem;
    background: var(--light-color);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.approach-step h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.approach-step p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Why Choose Section */
.why-choose-section {
    padding: 6rem 0;
    background: var(--light-color);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    margin-top: 3rem;
}

.advantage-card {
    text-align: center;
    padding: 2rem;
    background: var(--gray-color);
    border-radius: 16px;
    transition: var(--transition);
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--light-color);
    font-size: 2rem;
}

.advantage-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.advantage-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: var(--primary-color);
    color: var(--light-color);
        text-align: center;
    }
    
.cta-content h2 {
    color: var(--light-color);
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Service Areas Section */
.service-areas-section {
    padding: 6rem 0;
    background: var(--gray-color);
}

.service-areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-area-card {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-area-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-area-card ul {
    list-style: none;
    padding: 0;
}

.service-area-card li {
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-area-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Case Study Section */
.case-study-section {
    padding: 6rem 0;
    background: var(--light-color);
}

.case-study-card {
    display: grid;
        grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: var(--gray-color);
    padding: 3rem;
    border-radius: 16px;
    margin-top: 3rem;
}

.case-study-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.case-study-industry {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.case-study-content p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.case-study-results {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.case-study-results .result-item {
    text-align: center;
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 12px;
    min-width: 120px;
}

.case-study-results .result-item h4 {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.case-study-results .result-item p {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.case-study-image {
    height: 300px;
    background: var(--light-color);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

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

.case-study-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: var(--text-muted);
}

/* Contact Form Section */
.contact-form-section {
    padding: 6rem 0;
    background: var(--light-color);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    }

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
    flex-shrink: 0;
}

.contact-text h3 {
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.contact-text p {
    color: var(--text-muted);
    margin: 0;
}

.contact-form-container {
    background: var(--gray-color);
    padding: 2rem;
    border-radius: 16px;
}

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

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

.form-group label {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--light-color);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    margin: 0;
    width: auto;
}

.checkbox-label a {
    color: var(--accent-color);
    text-decoration: none;
}

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

.form-submit-btn {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    position: relative;
}

.btn-loading {
    display: none;
}

/* Offices Section */
.offices-section {
    padding: 6rem 0;
    background: var(--gray-color);
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.office-card {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.office-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.office-type {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.office-details p {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.office-details i {
    color: var(--accent-color);
    width: 16px;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: var(--light-color);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: var(--gray-color);
    padding: 2rem;
    border-radius: 16px;
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.faq-item p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Active Navigation Link */
.nav-link.active {
    color: var(--accent-color);
}

.dropdown-menu .active {
    background: var(--gray-color);
    color: var(--accent-color);
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 12rem;
    }
    
    .hero-subtitle {
        font-size: 8rem;
    }
    
    .hero-desc {
        font-size: 3rem;
    }
    
    .hero-desc-small {
        font-size: 1rem;
    }
    
    .hero-btn {
        font-size: 1rem;
        padding: 1.25rem 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .services-grid-full {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 1fr);
        gap: 1.5rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .page-header {
        padding: 6rem 0 3rem 0;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .case-study-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .innovation-2-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .innovation-2-content {
        text-align: center;
        justify-self: center;
    }
    
    .innovation-2-title {
        font-size: 2.5rem;
    }
    
    .innovation-2-desc {
        font-size: 1.125rem;
    }
}

/* Breadcrumb Styles */
.breadcrumb {
    padding: 1rem 0;
    background: var(--gray-color);
    margin-top: 80px;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.breadcrumb-nav a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-nav a:hover {
    color: var(--accent-color);
}

.breadcrumb-nav i {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.breadcrumb-nav > a:last-child {
    color: var(--primary-color);
    font-weight: 600;
}

/* Legal Content Styles */
.legal-content {
    padding: 4rem 0;
    background: var(--light-color);
}

.legal-text h2 {
    color: var(--primary-color);
    margin: 2rem 0 1rem;
    font-size: 1.75rem;
}

.legal-text h3 {
    color: var(--secondary-color);
    margin: 1.5rem 0 0.75rem;
    font-size: 1.375rem;
}

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

.legal-text ul {
    margin: 1rem 0 1.5rem 2rem;
    list-style-type: disc;
}

.legal-text ul li {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}