

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette */
    --primary-gray: #f8f9fa;
    --dark-gray: #6b7280;
    --light-gray: #e5e7eb;
    --white: #ffffff;
    --dark-blue: #003d82;
    --light-blue: #1a5fa0;
    --accent-blue: #0055b8;
    
    /* Typography */
    --font-main: 'Quicksand', 'Futura', sans-serif;
    --font-display: 'Montserrat', 'Futura', sans-serif;
    
    /* Shadows */
    --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-dark: 0 8px 32px rgba(0, 0, 0, 0.15);
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--dark-gray);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0.5em;
}

h1 { font-size: 3.85rem; }
h2 { font-size: 2.75rem; }
h3 { font-size: 1.65rem; }
h4 { font-size: 1.375rem; }

p {
    margin-bottom: 1em;
}

/* ============ NAVIGATION ============ */
.navbar {
    position: sticky;
    top: 0;
    background-color: var(--white);
    border-bottom: 1px solid var(--primary-gray);
    z-index: 1000;
    box-shadow: var(--shadow-light);
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    cursor: pointer;
}

.logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
    image-rendering: crisp-edges;
    -webkit-font-smoothing: antialiased;
    filter: contrast(1.1) brightness(0.98);
}

.logo-img:hover {
    opacity: 0.85;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    font-size: 1.04rem;
    transition: var(--transition-smooth);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--dark-blue);
    transition: width 0.3s ease-out;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--dark-blue);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--dark-gray);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* ============ HERO SECTION ============ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 100px 0 80px;
}

.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/hero_background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
}

.hero-background-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.75) 0%, rgba(232, 236, 241, 0.75) 100%),
                linear-gradient(135deg, rgba(0, 61, 130, 0.15) 0%, rgba(0, 85, 184, 0.1) 100%);
    z-index: 1;
}

.hero-background-image::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 61, 130, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.hero-background-image::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 85, 184, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(30px); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(58, 63, 71, 0.1);
    pointer-events: none;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    max-width: 600px;
}

.hero-title {
    font-size: 3.85rem;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-weight: 700;
}

.hero-title .highlight-primary {
    color: var(--dark-blue);
    position: relative;
    display: inline-block;
}

.hero-title .highlight {
    color: var(--accent-blue);
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.21rem;
    color: var(--dark-gray);
    margin-bottom: 3rem;
    line-height: 1.8;
    opacity: 0.85;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Hero Visual Cards */
.hero-visual {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-visual-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.75rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(0, 61, 130, 0.08);
    transition: var(--transition-smooth);
    animation: fadeInRight 0.8s ease-out forwards;
    opacity: 0;
}

.hero-visual-card:hover {
    box-shadow: var(--shadow-medium);
    transform: translateX(8px);
    border-color: var(--dark-blue);
}

.hero-visual-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-visual-icon svg {
    width: 40px;
    height: 40px;
    color: var(--dark-blue);
    stroke: var(--dark-blue);
}

.hero-visual-card p {
    color: var(--dark-gray);
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.04rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background-color: var(--dark-blue);
    color: var(--white);
    border-color: var(--dark-blue);
}

.btn-primary:hover {
    background-color: var(--accent-blue);
    border-color: var(--accent-blue);
    box-shadow: var(--shadow-medium);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--dark-blue);
    border-color: var(--dark-blue);
}

.btn-outline:hover {
    background-color: var(--dark-blue);
    color: var(--white);
    box-shadow: var(--shadow-medium);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
    display: block;
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.05rem;
}

/* ============ ANIMATIONS ============ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.fade-in-left {
    animation: fadeInLeft 0.8s ease-out forwards;
    opacity: 0;
}

.fade-in-right {
    animation: fadeInRight 0.8s ease-out forwards;
    opacity: 0;
}

/* Scroll animations */
.section-animate {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* ============ SECTION HEADERS ============ */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-size: 2.75rem;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--dark-blue), var(--accent-blue));
    margin: 1.5rem auto 0;
    border-radius: 2px;
}

.section-subtitle {
    color: var(--dark-gray);
    font-size: 1.21rem;
    opacity: 0.75;
    max-width: 600px;
    margin: 1rem auto 0;
}

/* ============ ABOUT SECTION ============ */
.about {
    padding: 100px 0;
    background-color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-top: 4rem;
}

.about-card {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
    border-radius: 8px;
    background: var(--primary-gray);
    transition: var(--transition-smooth);
}

.about-card:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-4px);
}

.about-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--light-gray), var(--primary-gray));
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    background: linear-gradient(135deg, #e8ecf1 0%, #d5d8dd 100%);
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 61, 130, 0.1) 0%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(50%, 50%); }
}

.image-placeholder svg {
    width: 80px;
    height: 80px;
    color: var(--dark-blue);
    position: relative;
    z-index: 2;
    stroke: var(--dark-blue);
    opacity: 0.7;
}

.about-image-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 8px;
    display: block;
    transition: filter 0.3s ease;
}

.about-card:hover .about-image-img {
    filter: brightness(0.95);
}

/* ============ FEATURED IMAGE SECTIONS ============ */
.featured-image {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.featured-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.15);
    z-index: 1;
    pointer-events: none;
}

.featured-image-2 {
    height: 380px;
}

.about-content h3 {
    font-size: 2.1rem;
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
}

.about-content .role {
    color: var(--dark-gray);
    font-size: 1.04rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.about-content .bio {
    color: var(--dark-gray);
    line-height: 1.8;
    font-size: 1.04rem;
    margin-bottom: 1.5rem;
}

.expertise-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.expertise-list li {
    color: var(--dark-blue);
    font-weight: 500;
    font-size: 0.99rem;
}

/* ============ SERVICES SECTION ============ */
.services {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--primary-gray) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.service-card {
    padding: 3rem;
    background-color: var(--white);
    border-radius: 8px;
    text-align: center;
    transition: var(--transition-smooth);
    border: 1px solid var(--primary-gray);
    box-shadow: var(--shadow-light);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-dark);
    border-color: var(--dark-blue);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 61, 130, 0.1), rgba(0, 85, 184, 0.1));
    border-radius: 50%;
    color: var(--dark-blue);
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, rgba(0, 61, 130, 0.2), rgba(0, 85, 184, 0.2));
    transform: scale(1.1) rotate(5deg);
}

.service-icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 2;
}

.service-card h3 {
    color: var(--dark-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.service-card p {
    color: var(--dark-gray);
    font-size: 0.99rem;
    line-height: 1.7;
    opacity: 0.85;
}

/* ============ PROCESS SECTION ============ */
.process {
    padding: 100px 0;
    background-color: var(--white);
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 4rem auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--dark-blue), var(--accent-blue), transparent);
    border-radius: 2px;
}

.timeline-item {
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 0;
    margin-right: calc(50% + 2rem);
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: calc(50% + 2rem);
    margin-right: 0;
    text-align: left;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background-color: var(--white);
    border: 3px solid var(--dark-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 0 0 4px var(--primary-gray);
}

.timeline-number {
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--dark-blue);
    font-family: var(--font-display);
}

.timeline-content {
    padding: 2rem;
    background-color: var(--primary-gray);
    border-radius: 8px;
    transition: var(--transition-smooth);
    border-left: 3px solid var(--dark-blue);
}

.timeline-item:nth-child(even) .timeline-content {
    border-left: none;
    border-right: 3px solid var(--dark-blue);
}

.timeline-content:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-4px);
}

.timeline-content h3 {
    color: var(--dark-blue);
    margin-bottom: 0.75rem;
}

.timeline-content p {
    color: var(--dark-gray);
    font-size: 1.04rem;
    line-height: 1.7;
    opacity: 0.85;
    margin-bottom: 0;
}

/* ============ TRUST SECTION ============ */
.trust {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--primary-gray) 0%, var(--white) 100%);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.trust-card {
    padding: 3rem 2rem;
    background-color: var(--white);
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--primary-gray);
    transition: var(--transition-smooth);
}

.trust-card:hover {
    border-color: var(--dark-blue);
    box-shadow: var(--shadow-medium);
}

.trust-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark-blue), var(--accent-blue));
    border-radius: 50%;
    color: var(--white);
}

.trust-icon svg {
    width: 36px;
    height: 36px;
}

.trust-card h3 {
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.trust-card p {
    color: var(--dark-gray);
    font-size: 1.04rem;
    line-height: 1.7;
    opacity: 0.85;
}

/* ============ CTA SECTION ============ */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--accent-blue) 100%);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 2.75rem;
}

.cta-content h2::after {
    background: rgba(255, 255, 255, 0.5);
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.21rem;
    margin-bottom: 2.5rem;
}

.cta-content .btn {
    background-color: var(--white);
    color: var(--dark-blue);
    border-color: var(--white);
}

.cta-content .btn:hover {
    background-color: var(--primary-gray);
    border-color: var(--primary-gray);
    transform: translateY(-2px);
}

/* ============ CONTACT SECTION ============ */
.contact {
    padding: 100px 0;
    background-color: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--light-gray);
    border-radius: 4px;
    font-family: var(--font-main);
    font-size: 1.04rem;
    color: var(--dark-gray);
    background-color: var(--primary-gray);
    transition: var(--transition-smooth);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--dark-gray);
    opacity: 0.6;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--dark-blue);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(0, 61, 130, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.form-hint {
    font-size: 0.935rem;
    color: var(--dark-gray);
    opacity: 0.7;
    margin-top: -0.5rem;
    text-align: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-info-block h3 {
    color: var(--dark-blue);
    margin-bottom: 1rem;
    font-size: 1.32rem;
}

.contact-info-block p {
    color: var(--dark-gray);
    font-size: 1.04rem;
    line-height: 1.8;
    opacity: 0.85;
}

.contact-info-block a {
    color: var(--dark-blue);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.contact-info-block a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* ============ FOOTER ============ */
.footer {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.21rem;
}

.footer-section p {
    font-size: 0.99rem;
    line-height: 1.6;
    opacity: 0.8;
    margin-bottom: 0;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.99rem;
    transition: var(--transition-smooth);
}

.footer-section ul li a:hover {
    color: var(--white);
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.935rem;
    padding-top: 1rem;
}

/* ============ RESPONSIVE DESIGN ============ */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: var(--white);
        padding: 1.5rem;
        gap: 1rem;
        border-bottom: 1px solid var(--primary-gray);
    }

    .nav-menu.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    h1 { font-size: 2.42rem; }
    h2 { font-size: 1.98rem; }
    h3 { font-size: 1.43rem; }

    .hero {
        min-height: 80vh;
        padding: 80px 0 60px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.42rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .hero-visual {
        gap: 1rem;
    }

    .hero-visual-card {
        padding: 1.25rem;
    }

    .about-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 80px;
        margin-right: 0;
        text-align: left;
    }

    .timeline-marker {
        left: 0;
    }

    .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        border-left: 3px solid var(--dark-blue);
        border-right: none;
    }

    .services-grid,
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 1.98rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    h1 { font-size: 2.1rem; }
    h2 { font-size: 1.815rem; }

    .hero-title {
        font-size: 1.815rem;
    }

    .hero-subtitle {
        font-size: 1.144rem;
    }

    .nav-menu {
        gap: 0.5rem;
    }

    .nav-link {
        font-size: 0.99rem;
    }

    .about-card,
    .service-card {
        padding: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-visual-icon {
        font-size: 2rem;
    }

    .hero-visual-card p {
        font-size: 0.99rem;
    }
    .timeline-marker,
    .timeline-number {
        display: none !important;
    }
}