/* Reset e Configurações Básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #ffd700;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #ffd700, #22c55e);
    border-radius: 2px;
}

/* Botões */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: #22c55e;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.btn-primary:hover {
    background: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #ffd700;
    border: 2px solid #ffd700;
}

.btn-secondary:hover {
    background: #ffd700;
    color: #1a365d;
    transform: translateY(-2px);
}

.btn-cta {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #ffffff;
    padding: 16px 32px;
    font-size: 1.2rem;
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(34, 197, 94, 0.4);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(34, 197, 94, 0.5);
}

.btn-cta-large {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #ffffff;
    padding: 20px 40px;
    font-size: 1.3rem;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(34, 197, 94, 0.4);
}

.btn-cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(34, 197, 94, 0.5);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 54, 93, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-box {
    background: #ffd700;
    color: #1a365d;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    border-radius: 8px;
    border: 2px solid #ffd700;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.logo-subtitle {
    font-size: 0.8rem;
    color: #ffd700;
    font-weight: 500;
    letter-spacing: 2px;
}

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

.nav-link {
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffd700;
    transition: width 0.3s ease;
}

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

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #ffd700;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg-new {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.8), rgba(26, 54, 93, 0.6)),
                url('assets/images/lp-bank1.jpg') center/cover;
    z-index: -1;
}

.hero-bg-new::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(26, 54, 93, 0.2) 100%);
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding-top: 100px;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #e2e8f0;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

/* Trust Numbers */
.trust-numbers {
    padding: 4rem 0;
    background: rgba(255, 215, 0, 0.1);
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.trust-item {
    padding: 1.5rem;
}

.trust-number {
    font-size: 3rem;
    font-weight: 800;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.trust-text {
    font-size: 1rem;
    color: #e2e8f0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a365d, #2d4a6b);
}

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

.about-text-section {
    text-align: left;
}

.about-text-section .section-title {
    text-align: left;
    margin-bottom: 2rem;
}

.about-text-section .section-title::after {
    left: 0;
    transform: none;
}

.about-text {
    font-size: 1.2rem;
    color: #e2e8f0;
    line-height: 1.8;
}

.about-image-section {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.about-image-section:hover {
    transform: translateY(-10px);
}

.about-team-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.about-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(26, 54, 93, 0.9));
    padding: 2rem;
    text-align: center;
}

.about-image-caption {
    color: #ffd700;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: #1a365d;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: #ffd700;
}

.service-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

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

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 2rem;
}

.service-title {
    font-size: 1.3rem;
    color: #ffd700;
    margin-bottom: 1rem;
}

.service-description {
    color: #e2e8f0;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.service-buttons .btn {
    flex: 1;
    min-width: 120px;
    text-align: center;
    justify-content: center;
}

/* Differentials Section */
.differentials {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2d4a6b, #1a365d);
}

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

.differential-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.differential-item:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.differential-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.differential-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: brightness(1.2);
}

.differential-title {
    font-size: 1.2rem;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.differential-text {
    color: #e2e8f0;
    line-height: 1.6;
}

/* Leadership Section */
.leadership {
    padding: 5rem 0;
    background: #1a365d;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

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

.leadership-image {
    position: relative;
}

.ceo-image {
    width: 100%;
    max-width: 400px;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.ceo-image:hover {
    transform: scale(1.05);
}

.leadership-text {
    padding: 2rem 0;
}

.leadership-title {
    font-size: 2.2rem;
    color: #ffd700;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.ceo-name {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.ceo-role {
    font-size: 1.1rem;
    color: #22c55e;
    margin-bottom: 2rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.leadership-description {
    font-size: 1.2rem;
    color: #e2e8f0;
    line-height: 1.8;
    margin-bottom: 3rem;
    font-style: italic;
    position: relative;
    padding-left: 2rem;
}

.leadership-description::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 4rem;
    color: #ffd700;
    font-family: serif;
    line-height: 1;
}

.leadership-stats {
    display: flex;
    gap: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Google Reviews Section */
.google-reviews {
    padding: 5rem 0;
    background: #1a365d;
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.google-rating {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.rating-score {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.score {
    font-size: 3rem;
    font-weight: 800;
    color: #ffd700;
}

.stars {
    display: flex;
    gap: 0.2rem;
}

.star {
    font-size: 1.5rem;
}

.rating-text {
    color: #e2e8f0;
    font-size: 1.1rem;
    margin: 0;
}

.google-logo {
    height: 40px;
    opacity: 0.8;
}

.reviews-carousel {
    position: relative;
    overflow: hidden;
    margin-bottom: 3rem;
}

.reviews-container {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
    padding: 1rem 0;
}

.review-card {
    min-width: 350px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.4);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: #1a365d;
}

.reviewer-details {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.reviewer-name {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.review-stars {
    font-size: 0.9rem;
}

.review-time {
    color: #94a3b8;
    font-size: 0.9rem;
}

.review-text {
    color: #e2e8f0;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
    font-style: italic;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border: 2px solid #ffd700;
    background: transparent;
    color: #ffd700;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: #ffd700;
    color: #1a365d;
    transform: scale(1.1);
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.carousel-btn:disabled:hover {
    background: transparent;
    color: #ffd700;
}

.reviews-cta {
    text-align: center;
    margin-top: 3rem;
}

.btn-outline {
    background: transparent;
    border: 2px solid #ffd700;
    color: #ffd700;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-outline:hover {
    background: #ffd700;
    color: #1a365d;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, #1a365d 0%, #2d5a87 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffd700" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffd700" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffd700" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23ffd700" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23ffd700" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.final-cta-content {
    text-align: right;
    position: relative;
    z-index: 2;
}

.final-cta-title {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.final-cta .btn-cta-large {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #ffffff;
    padding: 1.2rem 3rem;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.final-cta .btn-cta-large:hover {
    background: linear-gradient(135deg, #16a34a, #15803d);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(34, 197, 94, 0.4);
}

/* Footer */
.footer {
    background: #0f172a;
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-title {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-description {
    color: #94a3b8;
    line-height: 1.6;
}

.contact-info p {
    color: #e2e8f0;
    margin-bottom: 0.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffd700;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    color: #94a3b8;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        flex-wrap: wrap;
    }
    
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(26, 54, 93, 0.98);
        padding: 1rem;
        border-top: 1px solid rgba(255, 215, 0, 0.2);
    }
    
    .nav.active {
        display: block;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 1rem;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .trust-number {
        font-size: 2rem;
    }
    
    /* About Section Mobile */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-text-section .section-title {
        text-align: center;
    }
    
    .about-text-section .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .about-team-image {
        height: 300px;
    }
    
    /* Leadership Section Mobile */
    .leadership-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .leadership-image {
        order: 2;
    }
    
    .leadership-text {
        order: 1;
    }
    
    .ceo-image {
        max-width: 300px;
        height: 400px;
        margin: 0 auto;
    }
    
    .leadership-title {
        font-size: 1.8rem;
    }
    
    .ceo-name {
        font-size: 1.5rem;
    }
    
    .leadership-description {
        padding-left: 1rem;
        font-size: 1.1rem;
    }
    
    .leadership-stats {
        justify-content: center;
        gap: 2rem;
    }
    
    /* Google Reviews Section Mobile */
    .reviews-header {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .review-card {
        min-width: 280px;
    }
    
    .carousel-controls {
        margin-top: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .differentials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .final-cta-content {
        text-align: center;
    }
    
    .final-cta-title {
        font-size: 1.8rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .btn-cta, .btn-cta-large {
        padding: 14px 24px;
        font-size: 1rem;
    }
    
    /* Google Reviews Section Small Mobile */
    .review-card {
        min-width: 250px;
        padding: 1.5rem;
    }
    
    .reviewer-avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .score {
        font-size: 2.5rem;
    }
    
    /* Service Buttons Small Mobile */
    .service-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .service-buttons .btn {
        min-width: auto;
        width: 100%;
    }
    
    .differential-item {
        flex-direction: column;
        text-align: center;
    }
    
    .differential-icon {
        align-self: center;
    }
    
    /* About Section Small Mobile */
    .about-team-image {
        height: 250px;
    }
    
    /* Leadership Section Small Mobile */
    .ceo-image {
        max-width: 250px;
        height: 350px;
    }
    
    .leadership-title {
        font-size: 1.5rem;
    }
    
    .leadership-description {
        font-size: 1rem;
        padding-left: 0.5rem;
    }
    
    .leadership-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

