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

:root {
    --midnight-blue: #41729f;
    --blue-gray: #5885af;
    --dark-blue: #274472;
    --baby-blue: #c3e0e5;
    --teal: #70b3b8;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
}

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Updated Header with light background */
header {
    background: linear-gradient(
        135deg,
        var(--baby-blue) 0%,
        rgba(195, 224, 229, 0.95) 50%,
        var(--white) 100%
    );
    color: var(--dark-blue);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(39, 68, 114, 0.1);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--dark-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: translateY(-1px);
}

.logo-icon {
    width: 120px;
    height: 40px;
    transition: transform 0.3s ease;
}

.logo:hover .logo-icon {
    transform: scale(1.05);
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-blue);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--dark-blue);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.nav-links a:hover {
    color: var(--white);
    background: var(--midnight-blue);
    transform: translateY(-2px);
}

.nav-links a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--midnight-blue);
    transition: width 0.3s ease;
}

.nav-links a:not(:hover)::after {
    width: 100%;
}

/* Hero Section */
.hero {
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

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

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(39, 68, 114, 0.8) 0%,
        rgba(65, 114, 159, 0.7) 50%,
        rgba(88, 133, 175, 0.6) 100%
    );
    z-index: 2;
}

.faq {
    background: var(--light-gray);
    padding: 80px 0;
}

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

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    align-items: start;
}

.faq-subtitle {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 18px 45px -25px rgba(39, 68, 114, 0.35);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 55px -25px rgba(39, 68, 114, 0.45);
}

.faq-question {
    width: 100%;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
}

.faq-question:focus-visible {
    outline: 2px solid var(--midnight-blue);
    outline-offset: 2px;
}

.faq-icon::before {
    content: "+";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--baby-blue);
    color: var(--dark-blue);
    font-size: 1.1rem;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-icon::before {
    content: "\2212";
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
    font-size: 0.98rem;
}

.faq-answer p + p {
    margin-top: 0.75rem;
}

.faq-list {
    margin-top: 0.75rem;
    padding-left: 1.25rem;
    display: grid;
    gap: 0.5rem;
}

.faq-list.ordered {
    list-style: decimal;
}

.faq-list:not(.ordered) {
    list-style: disc;
}

.faq-answer a {
    color: var(--midnight-blue);
    font-weight: 600;
}

.faq-answer a:hover {
    color: var(--dark-blue);
}

.faq-item.open {
    border: 1px solid rgba(65, 114, 159, 0.35);
}

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

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--baby-blue);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.cta-button {
    background: linear-gradient(135deg, var(--baby-blue), var(--blue-gray));
    color: var(--dark-blue);
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(195, 224, 229, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(195, 224, 229, 0.4);
}

/* Video Introduction Section */
.video-intro {
    padding: 6rem 0;
    background: linear-gradient(
        135deg,
        var(--dark-blue) 0%,
        var(--midnight-blue) 100%
    );
    position: relative;
    overflow: hidden;
}

.video-intro::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(
            rgba(255, 255, 255, 0.05) 1px,
            transparent 1px
        ),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 10px 10px;
    opacity: 0.3;
}

.video-intro-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
    text-align: center;
}

.video-intro h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.video-intro p {
    font-size: 1.2rem;
    color: var(--baby-blue);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.video-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    background: #000;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #000;
}

.intro-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.play-button {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--baby-blue), white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.play-button::before {
    content: "";
    width: 0;
    height: 0;
    border-left: 20px solid var(--dark-blue);
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 4px;
}

.play-button::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* Stats Section */
.stats {
    background: var(--baby-blue);
    padding: 4rem 0;
    position: relative;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-weight: 500;
}

/* Updated About Section with background image */
.about {
    padding: 6rem 0;
    background: white;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content h2 {
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* New container for tech features with image showcase */
.tech-features-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.tech-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.tech-feature {
    background: linear-gradient(135deg, var(--baby-blue), white);
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid var(--midnight-blue);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.tech-feature h4 {
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.tech-feature p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* New image showcase section */
.tech-image-showcase {
    width: 100%;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, var(--baby-blue), var(--blue-gray));
}

.tech-image-showcase img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.tech-image-showcase:hover img {
    transform: scale(1.05);
}

/* Founders Section */
.founders {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--white), var(--light-gray));
    position: relative;
    overflow: hidden;
}

.founders::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(
        circle at 1px 1px,
        rgba(65, 114, 159, 0.08) 1px,
        transparent 0
    );
    background-size: 20px 20px;
    opacity: 0.6;
}

.founders-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.founders-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.founders-intro p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.founder-profiles {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
    align-items: stretch;
}

.founder-card {
    background: white;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(39, 68, 114, 0.12);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    flex: 1 1 calc(50% - 3rem);
    max-width: 500px;
    min-width: 320px;
    border: 1px solid rgba(195, 224, 229, 0.3);
    position: relative;
}

.founder-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(
        135deg,
        var(--midnight-blue),
        var(--blue-gray),
        var(--teal)
    );
    border-radius: 25px 25px 0 0;
}

.founder-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(39, 68, 114, 0.18);
}

.founder-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, var(--baby-blue), var(--light-gray));
    padding: 1rem;
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.4s ease;
    box-shadow: 0 8px 25px rgba(39, 68, 114, 0.15);
}

.founder-card:hover .founder-image img {
    transform: scale(1.03);
}

.founder-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
    background: linear-gradient(135deg, white, rgba(195, 224, 229, 0.05));
}

.founder-content h3 {
    font-size: 1.8rem;
    color: var(--dark-blue);
    font-weight: 700;
    margin-bottom: 0.5rem;
    position: relative;
}

.founder-content h3::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(135deg, var(--midnight-blue), var(--teal));
    border-radius: 2px;
}

.founder-role {
    font-size: 1rem;
    color: var(--midnight-blue);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.founder-content p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.05rem;
}

.founder-highlights {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.highlight-tag {
    background: linear-gradient(135deg, var(--baby-blue), var(--teal));
    color: var(--dark-blue);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(65, 114, 159, 0.2);
}

/* Updated responsive design for mobile */
@media (max-width: 768px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .tech-features {
        grid-template-columns: 1fr;
    }

    .founders {
        padding: 4rem 0;
    }

    .founder-profiles {
        gap: 2rem;
    }

    .founder-card {
        align-items: center;
        text-align: center;
        flex: 1 1 100%;
        max-width: 400px;
        min-width: 280px;
    }

    .founder-content {
        padding: 2rem 1.5rem;
    }

    .founder-content h3 {
        font-size: 1.6rem;
    }

    .founder-image {
        height: 280px;
    }

    .founders-intro p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .highlight-tag {
        font-size: 0.8rem;
        padding: 0.3rem 0.8rem;
    }
}

/* Process Section */
/* Process Section */
.process {
    background: linear-gradient(135deg, var(--light-gray), white);
    padding: 6rem 0;
}

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

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.process-step {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-image {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    background: var(--baby-blue);
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.process-step:hover .step-image img {
    transform: scale(1.05);
}

.step-content {
    width: 100%;
}

.process-step h3 {
    color: var(--dark-blue);
    margin-bottom: 1rem;
    font-weight: 600;
}

.process-step p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Roles Section */
.roles {
    padding: 6rem 0;
    background: white;
}

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

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

.category-title {
    font-size: 1.8rem;
    color: var(--dark-blue);
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.category-title::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--midnight-blue), var(--blue-gray));
    border-radius: 2px;
}

/* Roles Table Styles */
.roles-table {
    width: 100%;
    margin-bottom: 3rem;
}

.roles-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.roles-table td {
    padding: 1.5rem;
    text-align: center;
    vertical-align: top;
    width: 25%;
    border-right: 1px solid rgba(65, 114, 159, 0.15);
}

.roles-table td:last-child {
    border-right: none;
}

.role-images td {
    padding: 2rem 1.5rem 1rem;
}

.role-images img {
    width: 160px;
    height: 100px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.role-images img:hover {
    transform: scale(1.05);
}

.role-titles td {
    color: var(--dark-blue);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 1.5rem;
}

.role-descriptions td {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    padding: 1rem 1.5rem;
}

.role-skills-row td {
    padding: 1rem 1.5rem 2rem;
}

.role-skills-row .role-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

/* Responsive design for table */
@media (max-width: 1024px) {
    .roles-table table {
        font-size: 0.9rem;
    }

    .role-images img {
        width: 140px;
        height: 85px;
    }

    .roles-table td {
        padding: 1rem;
    }

    .role-skills-row .role-skills {
        gap: 0.3rem;
    }

    .skill-tag {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }
}

@media (max-width: 768px) {
    .roles-table table,
    .roles-table tbody,
    .roles-table tr,
    .roles-table td {
        display: block;
        width: 100%;
    }

    .roles-table tr {
        margin-bottom: 2rem;
        background: white;
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        overflow: hidden;
    }

    .role-images td,
    .role-titles td,
    .role-descriptions td,
    .role-skills-row td {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 1rem;
        border: none;
    }

    .role-images {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .role-titles,
    .role-descriptions,
    .role-skills-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .role-skills-row .role-skills {
        justify-content: center;
    }
}

.roles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.role-card {
    background: linear-gradient(135deg, white, var(--baby-blue));
    border: 1px solid rgba(65, 114, 159, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.role-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.role-title {
    color: var(--dark-blue);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.role-description {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.role-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skill-tag {
    background: var(--midnight-blue);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Get Started Section */
.get-started {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--light-gray), white);
}

.get-started-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.get-started-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.get-started-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-top: 4px solid var(--midnight-blue);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.get-started-card h3 {
    color: var(--dark-blue);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.get-started-card h4 {
    color: var(--midnight-blue);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.get-started-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.email-contact {
    font-size: 0.9rem;
    color: var(--text-light);
}

.email-contact a {
    color: var(--midnight-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.email-contact a:hover {
    color: var(--dark-blue);
    text-decoration: underline;
}

/* Responsive design for cards */
@media (max-width: 768px) {
    .get-started-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .get-started-card {
        padding: 2rem 1.5rem;
    }

    .get-started-container {
        padding: 0 1rem;
    }
}

/* Footer */
footer {
    background: var(--dark-blue);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

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

.footer-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--baby-blue);
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--baby-blue);
    text-decoration: none;
    font-weight: 500;
}

.contact-item:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .logo-icon {
        width: 90px;
        height: 30px;
    }

    .video-intro {
        padding: 4rem 0;
    }

    .video-intro h2 {
        font-size: 2rem;
    }

    .video-intro p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .play-button {
        width: 60px;
        height: 60px;
    }

    .play-button::before {
        border-left: 15px solid var(--dark-blue);
        border-top: 9px solid transparent;
        border-bottom: 9px solid transparent;
    }

    .play-button::after {
        width: 80px;
        height: 80px;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .tech-features {
        grid-template-columns: 1fr;
    }

    .contact-info {
        flex-direction: column;
        gap: 1rem;
    }

    .hero {
        padding: 100px 0 60px;
    }
}

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

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