:root {
    --primary-dark: #082f63;
    --primary-white: #FFFFFF;
    --light-gray: #F5F5F5;
    --accent-gold: #CFAF70;
    --text-dark: #082f63;
    --text-light: #6C757D;
    --border-light: #E9ECEF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--primary-white);
}

.display-font {
    font-family: 'Inter', sans-serif;
}

/* Header Styles */
.navbar {
    background: var(--primary-white);
    box-shadow: 0 2px 20px rgba(10, 35, 66, 0.1);
    padding: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar-brand {
    /* Empty - logo styling handled by .logo class */
}

.logo {
    height: 120px;
    display: block;
}

.navbar-nav .nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-gold) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

/* Language switch flags */
.lang-switch .lang-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
}

.lang-switch .lang-link:hover {
    text-decoration: underline;
}

.lang-switch .lang-sep {
    color: var(--text-light);
}

/* Active language underline helper (no JS state handling here) */
.lang-switch .lang-link.active {
    text-decoration: underline;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #06254f 100%);
    color: var(--primary-white);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

 .hero::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 1000 1000"><polygon fill="rgba(207,175,112,0.1)" points="0,1000 1000,0 1000,1000"/></svg>');
     background-size: cover;
     z-index: 1;
 }

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    font-weight: 300;
}

.hero-subtitle {
    color: var(--accent-gold);
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

 /* Quick Contact Form */
 .quick-contact {
     background: var(--primary-white);
     padding: 2.5rem;
     border-radius: 15px;
     box-shadow: 0 20px 40px rgba(0,0,0,0.1);
     margin-top: 3rem;
     position: relative;
     z-index: 10;
 }

.quick-contact h3 {
    color: var(--primary-dark);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.form-control {
    border: 2px solid var(--border-light);
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

 .form-control:focus {
     border-color: var(--accent-gold);
     box-shadow: 0 0 0 0.2rem rgba(207, 175, 112, 0.25);
 }

 /* Custom Select Arrow */
 .form-control[type="text"],
 .form-control[type="email"],
 .form-control[type="tel"] {
     background-image: none;
 }

 select.form-control {
     background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%236C757D"><path d="M7 10l5 5 5-5z"/></svg>');
     background-repeat: no-repeat;
     background-position: right 12px center;
     background-size: 16px;
     padding-right: 40px;
     appearance: none;
     -webkit-appearance: none;
     -moz-appearance: none;
 }

 select.form-control:focus {
     background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23CFAF70"><path d="M7 10l5 5 5-5z"/></svg>');
 }

.btn-primary {
    background: var(--accent-gold);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background: #b8945a;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(207, 175, 112, 0.3);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--light-gray);
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-family: 'Inter', sans-serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.service-card {
    background: var(--primary-white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--border-light);
    display: block;
    text-decoration: none;
}

.service-card[data-sef] {
    cursor: pointer;
}

/* Service Modal and Content */
.service-content {
    padding: 0 20px;
}

#serviceModal .modal-content {
    background: var(--primary-dark);
    color: var(--primary-white);
}

#serviceModal .modal-header,
#serviceModal .modal-footer {
    background: var(--primary-dark);
    border-color: var(--accent-gold);
}

#serviceModal .modal-title {
    color: var(--primary-white);
}

#serviceModal .btn-close {
    filter: invert(1);
}

#serviceModal a {
    color: var(--accent-gold);
}

/* Tabs in Service Modal */
#serviceModal .nav-tabs {
    border-bottom-color: rgba(255,255,255,0.2);
}

#serviceModal .nav-tabs .nav-link:not(.active) {
    color: var(--primary-white);
}

/* Cookie Consent Panel */
.cookie-consent {
    position: fixed;
    left: 16px;
    bottom: 16px;
    max-width: 520px;
    width: calc(100% - 32px);
    background: var(--primary-white);
    color: var(--primary-dark);
    border: 2px solid var(--primary-dark);
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.35);
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1200;
}

.cookie-consent.is-visible {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.cookie-consent .cookie-inner {
    display: flex;
    align-items: center;
    padding: 16px;
    flex-direction: column;
}

.cookie-consent .cookie-text {
    flex: 1;
    font-size: 0.95rem;
}
.cookie-consent .cookie-inner a {
    color: var(--primary-dark);
    text-decoration: underline;
    font-weight: 700;
}

.cookie-consent .cookie-actions {
    white-space: nowrap;
}

/* Cookie button inverse theme */
#cookieConsent #cookieAcceptBtn {
    background: var(--primary-dark);
    color: var(--primary-white);
    border: 1px solid var(--primary-dark);
}

#cookieConsent #cookieAcceptBtn:hover {
    background: #06254f;
    border-color: #06254f;
}

@media (max-width: 576px) {
    .cookie-consent .cookie-inner {
        flex-direction: column;
        align-items: stretch;
    }
    .cookie-consent .cookie-actions {
        text-align: right;
    }
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-gold), #b8945a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--primary-white);
}

.service-icon svg {
    height: 54px;
}

.service-card h4 {
    color: var(--primary-dark);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Mission Vision Section */
.mission-vision {
    padding: 80px 0;
    background: var(--primary-white);
}

.mission-card, .vision-card {
    background: var(--light-gray);
    padding: 3rem;
    border-radius: 15px;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.mission-card::before, .vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), #b8945a);
}

.mission-card h3, .vision-card h3 {
    color: var(--primary-dark);
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.mission-card p, .vision-card p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Partners Section */
.partners {
    padding: 80px 0;
    background: var(--light-gray);
}

.partner-card {
    background: var(--primary-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.partner-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: transparent;
    border: 3px solid var(--accent-gold);
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary-white);
    overflow: hidden;
}

.partner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.partner-card h4 {
    color: var(--primary-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.partner-title {
    color: var(--accent-gold);
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.partner-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.partner-card {
    cursor: pointer;
    transition: all 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Partner Profile Modal Styles */
.partner-profile {
    background: var(--primary-dark);
    color: var(--primary-white);
    padding: 2rem;
    border-radius: 15px;
    margin: -1rem;
}

.profile-photo {
    margin-bottom: 1.5rem;
}

.profile-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--accent-gold);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.profile-title {
    margin-top: 1rem;
}

.profile-title h6 {
    color: var(--primary-white);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.profile-title p {
    color: var(--accent-gold);
    font-size: 0.9rem;
    margin-bottom: 0;
    letter-spacing: 1px;
}

.profile-title a {
    color: var(--accent-gold);
    font-size: 0.9rem;
    margin-bottom: 0;
    letter-spacing: 1px;
}

.profile-title .bi-linkedin {
    color: var(--primary-white);
}

.profile-title .bi-linkedin:hover {
    color: var(--accent-gold);
}

.profile-name {
    color: var(--primary-white);
    font-family: 'Inter', sans-serif;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.profile-bio {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.profile-bio p {
    margin-bottom: 1.2rem;
    font-size: 1rem;
}

.profile-bio p:last-child {
    margin-bottom: 0;
}

/* Modal Header Styling */
.modal-header {
    background: var(--primary-dark);
    color: var(--primary-white);
    border-bottom: 1px solid var(--accent-gold);
}

.modal-title {
    color: var(--primary-white);
    font-weight: 600;
}

.btn-close {
    filter: invert(1);
}

/* Modal Content Styling */
.modal-content {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.modal-body {
    padding: 0;
}

.modal-footer {
    background: var(--primary-dark);
    border-top: 1px solid var(--border-light);
}

/* Responsive Design */
@media (max-width: 768px) {
    .partner-profile {
        padding: 1.5rem;
    }

    .profile-image {
        width: 150px;
        height: 150px;
    }

    .profile-name {
        font-size: 1.8rem;
    }

    .profile-bio p {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .modal-body {
        padding: 0 10px;
    }
    .partner-profile {
        padding: 1rem;
    }

    .profile-image {
        width: 120px;
        height: 120px;
    }

    .profile-name {
        font-size: 1.5rem;
        margin-top: 15px;
    }
}

/* Academy Section */
.academy {
    padding: 80px 0;
    background: var(--primary-white);
}

/* Academy Description */
.academy-description {
    margin-top: 4rem;
}

.description-card {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #06254f 100%);
    color: var(--primary-white);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(10, 35, 66, 0.2);
}

.description-card::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 1000 1000"><polygon fill="rgba(207,175,112,0.1)" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
    z-index: 1;
}

.description-card > * {
    position: relative;
    z-index: 2;
}

.description-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--primary-white);
}

.description-card h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--primary-white);
}

.description-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.academy-card {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.academy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.academy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), #b8945a);
}

.academy-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--primary-white);
}

.academy-card h4 {
    color: var(--primary-dark);
    font-weight: 600;
    margin-bottom: 1rem;
}

.academy-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.academy-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: var(--primary-white);
    padding: 60px 0 30px;
}

.footer h5 {
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

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

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

/* WhatsApp Link Styling */
a[href^="https://wa.me/"] {
    text-decoration: none;
    transition: all 0.3s ease;
}

a[href^="https://wa.me/"]:hover {
    color: #128C7E;
    text-decoration: underline;
}

/* Contact Section WhatsApp Links */
.py-section a[href^="https://wa.me/"] {
    color: var(--text-dark);
    font-weight: 500;
}

.py-section a[href^="https://wa.me/"]:hover {
    color: #25D366;
}

/* Telephone Link Styling */
a[href^="tel:"] {
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
}

a[href^="tel:"]:hover {
    color: var(--accent-gold);
    text-decoration: underline;
}

/* Footer telephone links */
.footer a[href^="tel:"] {
    color: rgba(255,255,255,0.8);
}

.footer a[href^="tel:"]:hover {
    color: var(--accent-gold);
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--accent-gold);
    color: var(--primary-dark);
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-white);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 2rem;
    padding-top: 2rem;
    text-align: center;
}
.footer-bottom a {
    display: inline-block;
}

/* White logo in footer */
.logo-white {
    max-height: 100px;
    height: auto;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    z-index: 1100;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-whatsapp i {
    font-size: 28px;
    line-height: 1;
}

.floating-whatsapp:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 14px 30px rgba(0,0,0,0.25);
}

.floating-whatsapp::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: rgba(37, 211, 102, 0.4);
    animation: whatsapp-pulse 1.8s ease-out infinite;
    z-index: -1;
}

@keyframes whatsapp-pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
    }
    70% {
        transform: translate(-50%, -50%) scale(1.8);
        opacity: 0;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.8);
        opacity: 0;
    }
}

@media (max-width: 576px) {
    .logo {
        height: 90px;
    }
    .floating-whatsapp {
        width: 56px;
        height: 56px;
        right: 16px;
        bottom: 16px;
    }

    .floating-whatsapp i {
        font-size: 26px;
    }
}

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

    .hero p {
        font-size: 1.1rem;
    }

    .section-title h2 {
        font-size: 2.2rem;
    }

    .quick-contact {
        margin-top: 2rem;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 150px 0 60px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .service-card,
    .partner-card,
    .academy-card {
        margin-bottom: 2rem;
    }
}

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

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

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

 /* Custom spacing */
 .py-section {
     padding: 80px 0;
 }

 /* About Section */
 .about-section {
     background: var(--primary-white);
     color: var(--text-dark);
     padding: 80px 0;
     position: relative;
     overflow: hidden;
 }

 .about-content {
     position: relative;
     z-index: 2;
 }

 .about-title {
     font-family: 'Inter', sans-serif;
     font-size: 3rem;
     font-weight: 700;
     color: var(--primary-dark);
     margin-bottom: 3rem;
     text-align: center;
 }

 .about-text {
     text-align: left;
     max-width: 800px;
     margin: 0 auto;
 }

 .about-text p {
     font-size: 1.1rem;
     line-height: 1.8;
     margin-bottom: 1.5rem;
     color: var(--text-light);
 }

 .about-text p:last-child {
     margin-bottom: 0;
 }

 /* About Visual Section */
 .about-visual {
     padding: 2rem 0;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .about-image {
     width: 100%;
     max-width: 500px;
     height: auto;
     border-radius: 15px;
     box-shadow: 0 20px 40px rgba(0,0,0,0.15);
     transition: all 0.3s ease;
 }

 .about-image:hover {
     transform: translateY(-5px);
     box-shadow: 0 25px 50px rgba(0,0,0,0.2);
 }

 /* Responsive adjustments for about image */
 @media (max-width: 768px) {
     .about-image {
         max-width: 400px;
     }
 }

 @media (max-width: 576px) {
     .about-image {
         max-width: 350px;
     }
 }

/* Responsive adjustments for about section */
@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }

    .about-text p {
        font-size: 1rem;
    }

    .about-section::before,
    .about-section::after {
        display: none;
    }

    .description-card {
        padding: 2rem;
    }

    .description-card h4 {
        font-size: 1.5rem;
    }

    .description-card p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .about-title {
        font-size: 2rem;
    }

    .about-section {
        padding: 60px 0;
    }

    .description-card {
        padding: 1.5rem;
    }

    .description-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .description-card h4 {
        font-size: 1.3rem;
    }
}


/* Google Translate stilleri */
#goog-gt-tt {
    display: none !important;
}

.goog-te-banner-frame {
    display: none !important;
}

.goog-te-menu-value:hover {
    text-decoration: none !important;
}

body {
    top: 0 !important;
}

#google_translate_element2, body>.skiptranslate {
    display: none !important;
}

.blog-section .card-title {
    color: var(--primary-dark);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}
.blog-section .card-text {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.7;
}
.blog-section .card-footer .btn {
    color: #fff;
    background: linear-gradient(135deg, var(--accent-gold), #b8945a);
    border: 0;
    box-shadow: 0 10px 25px rgba(207, 175, 112, 0.3);
    transition: all 0.3s ease;
}
.blog-section .card-footer .btn:hover {
    background: linear-gradient(135deg, #b8945a, var(--accent-gold));
}
.blog-section .card-body {
    color: var(--text-light);
}
.blog-section .card-body h1 {
    color: var(--primary-dark);
}

.footer-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
}
.footer-logos > div {

}
.footer-logos > div img {
    display: block;
    max-width: 100px;
    aspect-ratio: auto;

}