:root {
    --primary: #2A5CAA;
    --secondary: #FFC107;
    --success: #198754;
    --dark: #1A2332;
    --light: #F8F9FA;
    --gradient: linear-gradient(135deg, var(--primary), #3A7BD5);
}

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--dark);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary) !important;
}

.hero-section {
    background: var(--gradient);
    padding: 120px 0 80px;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-section h1 {
    color: white;
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
}

.hero-section p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.hero-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 50px;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 70px;
    height: 4px;
    background: var(--secondary);
    bottom: 0;
    left: 0;
}

.section-title.text-center:after {
    left: 50%;
    transform: translateX(-50%);
}

.card-feature {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.card-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.8rem;
}

.stat-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-text {
    font-size: 1.1rem;
    color: var(--dark);
}

.testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.testimonial-text {
    font-style: italic;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid var(--secondary);
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary);
    margin-top: 20px;
}

.footer {
    background-color: var(--dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 70px 0 30px;
}

.footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--secondary);
}

.footer-title {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 25px;
}

.animated-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animated-element.visible {
    opacity: 1;
    transform: translateY(0);
}

.btn-primary {
    background: var(--gradient);
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(42, 92, 170, 0.2);
}

.btn-outline-light:hover {
    color: var(--primary);
}

.article-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    height: 100%;
}

.article-card:hover {
    transform: translateY(-10px);
}

.article-img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.article-content {
    padding: 25px;
}

.article-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.article-meta {
    font-size: 0.9rem;
    color: #6c757d;
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

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

    .stat-number {
        font-size: 2.2rem;
    }
}