body {
    font-family: 'Poppins', sans-serif;
    padding-top: 76px;
    animation: fadeInAnimation ease 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
     }
}

.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80') no-repeat center center;
    background-size: cover;
    padding: 10rem 0;
    margin-top: -76px;
    padding-top: 12rem;
    position: relative;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 288px;
    height: 288px;
    background: url('../images/logo-small-white-precocity.avif') no-repeat center center;
    background-size: contain;
    opacity: 0.8;
    z-index: 10;
}

.page-header {
    background: #e9ecef;
    padding: 2rem 0 1.5rem 0;
    margin-top: -76px;
    padding-top: 5rem;
    position: relative;
    z-index: 10;
}

.page-header h1 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.page-header img {
    filter: grayscale(100%);
}

.section-title {
    margin-bottom: 1rem;
}

.section-divider {
    margin: 0 auto 3rem auto;
    width: 50px;
    height: 3px;
    background-color: #0d6efd;
}

.card {
    border: none;
    background-color: #e9ecef;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform .2s;
}

.card:hover {
    transform: scale(1.05);
}

.navbar {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%) !important;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.2);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1030;
}

.navbar-brand {
    font-weight: 700;
}

main {
    flex: 1;
}

footer {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    font-size: 0.9rem;
    margin-top: auto;
}

footer h5 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

footer p {
    margin-bottom: 0.5rem;
}

footer a {
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Scroll-in animation */
.reveal {
    position: relative;
    transform: translateY(150px);
    opacity: 0;
    transition: 1s all ease;
}

.reveal.active {
    transform: translateY(0);
    opacity: 1;
}

/* Enhanced button hover effect */
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
