p {
    font-size: 1.125rem;
    color: #404040;
    line-height: 1.625;
}

a {
    font-weight: 600;
}

body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex-grow: 1; /* This makes the main content area expand to fill available space */
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #f9f9f9;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

.animate-fade-in-down {
    animation: fadeInDown 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(-10px);
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    animation-delay: 0.1s;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.section {
    scroll-snap-align: start;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.section-container {
    width: 100%;
    max-width: 56rem;
}

@media (min-width: 1024px) {
    .section-container {
        max-width: 64rem;

    }
}

.section-heading {
    font-size: 2.25rem;
    font-weight: 700;
    color: #171717;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    display: inline-block;
    border-bottom: 2px solid #a5b4fc;
}



.content-card {
    background-color: #fafafa;
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
    transition-property: border-color, box-shadow;
    transition-duration: 200ms;
    transition-timing-function: ease-in-out;
}

.content-card:hover {
    border-color: #a5b4fc;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}


.scroll-down-arrow {
    margin-top: 2.5rem;
    display: inline-block;
    color: #a3a3a3;
    font-size: 1.875rem;
    animation: bounce 1s infinite;
}


.hero-section-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .hero-section-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.nav-link {
    transition-property: color;
    transition-duration: 200ms;
    transition-timing-function: ease-in-out;
}

.nav-link:hover {
    color: #171717;
}

.contact-link {
    color: #171717;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    transition-property: color, text-decoration-color;
    transition-duration: 200ms;
    transition-timing-function: ease-in-out;
}

.contact-link:hover {
    color: #171717;
    text-decoration: underline;
    text-decoration-color: #a5b4fc;
}

.contact-link svg {
    width: 1.5rem;
    height: 1.5rem;
    margin-right: 0.5rem;
    fill: currentColor;
    flex-shrink: 0;
}

.arrow {
    margin-top: 2.5rem;
    display: inline-block;
    color: #a3a3a3;
    font-size: 1.875rem;
    line-height: 2.25rem;
}