﻿/* Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Body */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f7f9fc;
    color: #333;
    line-height: 1.6;
}

/* Main Content */
.main-content {
    padding: 30px 15px;
    min-height: 70vh;
    animation: fadeInContent 1s ease-in-out;
}

/* Footer */
.site-footer {
    background: #1e3c72;
    color: white;
    text-align: center;
    padding: 20px 15px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    animation: slideInBottom 1s ease;
    font-size: 0.9rem;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
}

/* Animations */
@keyframes fadeInContent {
    0% {
        opacity: 0;
        transform: translateY(15px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInBottom {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.animated-fade-in {
    animation: fadeInContent 1.2s ease-in-out;
}

/* Responsive Typography */
h1, h2, h3 {
    font-weight: 600;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .main-content {
        padding: 20px 10px;
    }

    .site-footer {
        font-size: 0.8rem;
        padding: 15px 10px;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    .container, .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
}
