/* Preloader Styles */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-windmill {
    width: 80px;
    height: 80px;
    animation: spin-clockwise 3s linear infinite;
    position: relative;
    z-index: 2;
}

/* Rüzgar Çizgileri */
.preloader-wind {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    pointer-events: none;
}

.wind-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(34, 75, 84, 0.3), rgba(34, 75, 84, 0.5), rgba(34, 75, 84, 0.3), transparent);
    border-radius: 2px;
    animation: wind-blow 1.5s ease-in-out infinite;
}

.wind-line-1 {
    width: 60px;
    top: 45%;
    left: 60%;
    animation-delay: 0s;
}

.wind-line-2 {
    width: 80px;
    top: 50%;
    left: 55%;
    animation-delay: 0.2s;
}

.wind-line-3 {
    width: 50px;
    top: 55%;
    left: 65%;
    animation-delay: 0.4s;
}

.wind-line-4 {
    width: 70px;
    top: 40%;
    left: 58%;
    animation-delay: 0.6s;
}

.wind-line-5 {
    width: 40px;
    top: 60%;
    left: 62%;
    animation-delay: 0.8s;
}

.wind-line-6 {
    width: 55px;
    top: 35%;
    left: 60%;
    animation-delay: 0.3s;
}

.wind-line-7 {
    width: 65px;
    top: 65%;
    left: 55%;
    animation-delay: 0.5s;
}

.wind-line-8 {
    width: 45px;
    top: 48%;
    left: 68%;
    animation-delay: 0.7s;
}

@keyframes wind-blow {
    0% {
        opacity: 0;
        transform: translateX(-30px) scaleX(0.5);
    }
    30% {
        opacity: 1;
        transform: translateX(0) scaleX(1);
    }
    70% {
        opacity: 1;
        transform: translateX(20px) scaleX(1.2);
    }
    100% {
        opacity: 0;
        transform: translateX(50px) scaleX(0.3);
    }
}

/* Rüzgar Parçacıkları */
.preloader-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.wind-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, rgba(34, 75, 84, 0.6), rgba(34, 75, 84, 0.2));
    border-radius: 50%;
    animation: particle-fly 2s ease-in-out infinite;
}

.wp-1 {
    top: 30%;
    left: 20%;
    animation-delay: 0s;
    animation-duration: 1.8s;
}

.wp-2 {
    top: 50%;
    left: 15%;
    width: 4px;
    height: 4px;
    animation-delay: 0.3s;
    animation-duration: 2.2s;
}

.wp-3 {
    top: 70%;
    left: 25%;
    width: 5px;
    height: 5px;
    animation-delay: 0.6s;
    animation-duration: 1.6s;
}

.wp-4 {
    top: 40%;
    left: 10%;
    width: 3px;
    height: 3px;
    animation-delay: 0.9s;
    animation-duration: 2s;
}

.wp-5 {
    top: 60%;
    left: 30%;
    animation-delay: 0.2s;
    animation-duration: 1.9s;
}

.wp-6 {
    top: 25%;
    left: 35%;
    width: 4px;
    height: 4px;
    animation-delay: 0.5s;
    animation-duration: 2.1s;
}

.wp-7 {
    top: 75%;
    left: 18%;
    width: 5px;
    height: 5px;
    animation-delay: 0.8s;
    animation-duration: 1.7s;
}

.wp-8 {
    top: 45%;
    left: 22%;
    width: 3px;
    height: 3px;
    animation-delay: 0.4s;
    animation-duration: 2.3s;
}

.wp-9 {
    top: 55%;
    left: 8%;
    animation-delay: 0.7s;
    animation-duration: 1.5s;
}

.wp-10 {
    top: 35%;
    left: 28%;
    width: 4px;
    height: 4px;
    animation-delay: 1s;
    animation-duration: 2s;
}

@keyframes particle-fly {
    0% {
        opacity: 0;
        transform: translateX(0) translateY(0) scale(0);
    }
    10% {
        opacity: 1;
        transform: translateX(10px) translateY(-5px) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translateX(calc(50vw - 100px)) translateY(-10px) scale(0.8);
    }
    90% {
        opacity: 0.3;
        transform: translateX(calc(80vw - 50px)) translateY(5px) scale(0.4);
    }
    100% {
        opacity: 0;
        transform: translateX(90vw) translateY(0) scale(0);
    }
}

/* Image Loading Optimization */
.img-loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: img-shimmer 1.5s infinite;
}

@keyframes img-shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

img {
    opacity: 1;
    transition: opacity 0.3s ease;
}

img.lazy-loaded {
    opacity: 1;
}

.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, transform;
}

.animate-on-scroll.fade-up {
    transform: translateY(30px);
}

.animate-on-scroll.fade-down {
    transform: translateY(-30px);
}

.animate-on-scroll.fade-left {
    transform: translateX(-30px);
}

.animate-on-scroll.fade-right {
    transform: translateX(30px);
}

.animate-on-scroll.fade-scale {
    transform: scale(0.95);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
    will-change: auto;
}

@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.nowrap {
    white-space: nowrap;
}

html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
    overflow-x: hidden;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Bricolage Grotesque', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
}

.main-container {
    flex: 1;
    padding-top: 80px;
}

.main-container main {
    padding-bottom: 0 !important;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #0059aa;
}

.main-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 0;
    box-shadow: 0 4px 30px rgba(0, 89, 170, 0.08);
    border-bottom: 1px solid rgba(0, 89, 170, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-navbar.scrolled {
    padding: 0.75rem 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 40px rgba(0, 89, 170, 0.12);
}

.navbar-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.navbar-left {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 3.5rem;
    flex: 1;
}

.navbar-right {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 3.5rem;
    flex: 1;
}

.brand-logo {
    font-family: 'My Soul', cursive;
    color: #0059aa !important;
    font-size: 2.25rem;
    text-decoration: none;
    margin: 0 4rem;
    padding: 0;
    flex-shrink: 0;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand-logo::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #0059aa, #45a6da);
    border-radius: 2px;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand-logo:hover {
    color: #3c75bb !important;
    transform: scale(1.02);
}

.brand-logo:hover::after {
    width: 60%;
}

.nav-link-custom {
    font-family: 'Bricolage Grotesque', sans-serif;
    color: #0059aa !important;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    padding: 0.5rem 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.01em;
}

.nav-link-custom::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #0059aa, #45a6da);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.nav-link-custom:hover::after,
.nav-link-custom.active::after {
    width: 100%;
}

.nav-link-custom:hover {
    color: #3c75bb !important;
}

.nav-link-custom.active {
    color: #0059aa !important;
    font-weight: 600;
}

.nav-link-custom:link,
.nav-link-custom:visited,
.nav-link-custom:active,
.nav-link-custom:focus {
    color: #0059aa !important;
    text-decoration: none;
}

.navbar-toggler {
    display: none;
    border: none;
    padding: 0.5rem;
    background: transparent;
    cursor: pointer;
    outline: none;
}

.navbar-toggler:focus,
.navbar-toggler:active {
    outline: none;
    box-shadow: none;
    border: none;
}

.navbar-toggler-icon {
    display: block;
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%233577b3' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 89, 170, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1001;
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100%;
    background: linear-gradient(180deg, #fff 0%, #f8fbfd 100%);
    z-index: 1002;
    box-shadow: -10px 0 40px rgba(0, 89, 170, 0.15);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(0, 89, 170, 0.1);
    background: rgba(255, 255, 255, 0.8);
}

.mobile-menu-title {
    font-family: 'My Soul', cursive;
    color: #0059aa;
    font-size: 2rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-menu-title:hover {
    color: #3c75bb;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.75rem;
    color: #0059aa;
    cursor: pointer;
    line-height: 1;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-close:hover {
    background: rgba(0, 89, 170, 0.1);
    color: #3c75bb;
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    padding: 1.5rem 0;
    align-items: stretch;
    gap: 0.25rem;
}

.mobile-nav-link {
    font-family: 'Bricolage Grotesque', sans-serif;
    color: #0059aa !important;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    padding: 1rem 1.5rem;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 3px solid transparent;
}

.mobile-nav-link:link,
.mobile-nav-link:visited,
.mobile-nav-link:active,
.mobile-nav-link:focus {
    color: #0059aa !important;
    text-decoration: none;
}

.mobile-nav-link:hover {
    background: rgba(0, 89, 170, 0.05);
    border-left-color: #45a6da;
    padding-left: 2rem;
    color: #3c75bb !important;
}

.mobile-nav-link.active {
    background: rgba(0, 89, 170, 0.08);
    border-left-color: #0059aa;
    font-weight: 600;
}

@media (max-width: 1199.98px) {
    .navbar-left,
    .navbar-right {
        gap: 2rem;
    }

    .nav-link-custom {
        font-size: 0.9rem;
    }

    .brand-logo {
        font-size: 1.85rem;
        margin: 0 2.5rem;
    }
}

@media (max-width: 991.98px) {
    .main-container {
        padding-top: 70px;
    }

    .navbar-container {
        justify-content: space-between;
    }

    .navbar-left,
    .navbar-right {
        display: none;
    }

    .brand-logo {
        margin: 0;
    }

    .navbar-toggler {
        display: block;
    }
}

.main-footer {
    background: linear-gradient(180deg, #f8fbfd 0%, #eef6fc 100%);
    position: relative;
    z-index: 100;
    margin: 0;
    overflow: hidden;
    min-height: 280px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem 2rem;
    position: relative;
    z-index: 2;
}

.footer-main {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 6rem;
}

@media (max-width: 768px) {
    .footer-main {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 2rem;
        justify-content: flex-start;
    }

    .footer-info {
        gap: 0.5rem;
    }

    .footer-social {
        margin-top: 0.5rem;
        justify-content: flex-start;
    }

    .footer-legal {
        margin-top: 3rem;
        margin-left: 0;
        align-items: flex-start;
        white-space: nowrap;
    }

    .footer-legal .footer-legal-link {
        white-space: nowrap;
    }
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-logo {
    font-family: 'My Soul', cursive;
    color: #0059aa;
    font-size: 2.5rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-logo:hover {
    color: #3c75bb;
    transform: scale(1.02);
}

.footer-subtitle {
    font-family: 'Bricolage Grotesque', sans-serif;
    color: #508dca;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.footer-contact-item {
    font-family: 'Bricolage Grotesque', sans-serif;
    color: #3c75bb;
    font-size: 0.9rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s ease;
}

.footer-contact-item i {
    color: #45a6da;
    font-size: 0.9rem;
    width: 18px;
}

.footer-contact-item:hover {
    color: #0059aa;
}

.footer-contact-item:link,
.footer-contact-item:visited,
.footer-contact-item:active,
.footer-contact-item:focus {
    color: #3c75bb;
    text-decoration: none;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.footer-social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 89, 170, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0059aa;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 89, 170, 0.08);
}

.footer-social-link:hover {
    background: #0059aa;
    border-color: #0059aa;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 89, 170, 0.25);
}

.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
    z-index: 5;
    margin-top: 6.5rem;
    margin-left: 2rem;
}

.footer-legal .footer-legal-link {
    font-family: 'Bricolage Grotesque', sans-serif;
    color: #508dca;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal .footer-legal-link:hover {
    color: #0059aa;
    text-decoration: underline;
}

.footer-bottom {
    background: rgba(0, 89, 170, 0.03);
    padding: 1rem 2rem;
    position: relative;
    z-index: 10;
    border-top: 1px solid rgba(0, 89, 170, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0;
        padding: 0.25rem 1rem 0.5rem;
    }
}

.footer-copyright {
    font-family: 'Bricolage Grotesque', sans-serif;
    color: #508dca;
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

@media (max-width: 768px) {
    .footer-copyright {
        position: static;
        transform: none;
    }
}

.footer-windmill {
    position: absolute;
    bottom: -220px;
    right: -440px;
    width: 1000px;
    height: auto;
    animation: spin-reverse 25s linear infinite;
    z-index: 1;
}

@keyframes spin-reverse {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(-360deg);
    }
}

.footer-wind-particles {
    position: absolute;
    bottom: 80px;
    right: 420px;
    width: 400px;
    height: 250px;
    pointer-events: none;
    z-index: 2;
}

.footer-particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.footer-particle-1 {
    width: 16px;
    height: 8px;
    background: linear-gradient(135deg, rgba(53, 119, 179, 0.6), rgba(100, 180, 220, 0.4));
    border-radius: 50%;
    bottom: 40px;
    right: 0;
    animation: footer-wind-blow 6s ease-in-out infinite;
}

.footer-particle-2 {
    width: 12px;
    height: 12px;
    background: rgba(69, 166, 218, 0.45);
    bottom: 80px;
    right: 20px;
    animation: footer-wind-blow 5s ease-in-out infinite 0.8s;
}

.footer-particle-3 {
    width: 18px;
    height: 9px;
    background: linear-gradient(135deg, rgba(100, 180, 220, 0.5), rgba(53, 119, 179, 0.35));
    border-radius: 50%;
    bottom: 120px;
    right: 10px;
    animation: footer-wind-blow 7s ease-in-out infinite 1.5s;
}

.footer-particle-4 {
    width: 10px;
    height: 10px;
    background: rgba(53, 119, 179, 0.4);
    bottom: 60px;
    right: 40px;
    animation: footer-wind-blow 5.5s ease-in-out infinite 2.2s;
}

.footer-particle-5 {
    width: 14px;
    height: 7px;
    background: linear-gradient(135deg, rgba(69, 166, 218, 0.5), rgba(150, 200, 230, 0.3));
    border-radius: 50%;
    bottom: 100px;
    right: 30px;
    animation: footer-wind-blow 6.5s ease-in-out infinite 3s;
}

@keyframes footer-wind-blow {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0;
    }
    8% {
        opacity: 0.9;
    }
    30% {
        transform: translate(-120px, -20px) rotate(-30deg) scale(0.9);
        opacity: 0.7;
    }
    60% {
        transform: translate(-250px, -35px) rotate(-60deg) scale(0.7);
        opacity: 0.4;
    }
    100% {
        transform: translate(-400px, -25px) rotate(-90deg) scale(0.3);
        opacity: 0;
    }
}

@media (max-width: 991.98px) {
    .footer-windmill {
        width: 700px;
        right: -310px;
        bottom: -155px;
    }

    .footer-wind-particles {
        right: 300px;
        bottom: 60px;
        width: 300px;
        height: 180px;
    }

    .footer-particle-1,
    .footer-particle-2,
    .footer-particle-3,
    .footer-particle-4,
    .footer-particle-5 {
        transform: scale(0.85);
    }
}

@media (max-width: 767.98px) {
    .main-footer {
        min-height: auto;
        padding-bottom: 0;
        overflow: hidden;
    }

    .footer-content {
        padding: 2.5rem 1.5rem 1.5rem;
    }

    .footer-info {
        align-items: center;
        text-align: center;
    }

    .footer-contact-info {
        align-items: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-windmill {
        width: 450px;
        right: -195px;
        bottom: -95px;
    }

    .footer-wind-particles {
        right: 190px;
        bottom: 40px;
        width: 220px;
        height: 130px;
    }

    .footer-particle-1,
    .footer-particle-2,
    .footer-particle-3,
    .footer-particle-4,
    .footer-particle-5 {
        transform: scale(0.65);
    }
}

@media (max-width: 575.98px) {
    .main-footer {
        min-height: auto;
        padding-bottom: 0;
        overflow: hidden;
    }

    .footer-content {
        padding: 2rem 1rem 1rem;
    }

    .footer-logo {
        font-size: 2rem;
    }

    .footer-subtitle {
        font-size: 0.9rem;
    }

    .footer-contact-item {
        font-size: 0.85rem;
    }

    .footer-copyright {
        font-size: 0.8rem;
    }

    .footer-social-link {
        width: 34px;
        height: 34px;
        font-size: 0.9rem;
    }

    .footer-windmill {
        width: 380px;
        right: -160px;
        bottom: -82px;
    }

    .footer-wind-particles {
        right: 160px;
        bottom: 30px;
        width: 160px;
        height: 90px;
    }

    .footer-particle-1,
    .footer-particle-2,
    .footer-particle-3,
    .footer-particle-4,
    .footer-particle-5 {
        transform: scale(0.45);
    }
}

.banner-slider {
    position: relative;
    margin: 1.5rem 2rem;
}

.banner-slides {
    position: relative;
    overflow: hidden;
    border-radius: 40px;
    box-shadow: 0 20px 60px rgba(0, 89, 170, 0.12);
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
}

.banner-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
}

.banner-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.banner-dot-wrapper {
    position: relative;
}

.banner-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    border: 2px solid transparent;
}

.banner-dot:hover {
    background-color: rgba(255, 255, 255, 0.7);
    transform: scale(1.1);
}

.banner-dot.active {
    background-color: #fff;
    width: 32px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.banner-dot-preview {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) scale(0.8);
    width: 120px;
    height: 70px;
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

.banner-dot-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-dot-wrapper:hover .banner-dot-preview {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) scale(1);
}

.banner-dot-preview-main {
    background: linear-gradient(135deg, #dfeef4, #c5e0ed);
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-dot-preview-main span {
    font-family: 'My Soul', cursive;
    color: #0059aa;
    font-size: 1rem;
    text-align: center;
}

.banner-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: none;
    color: #0059aa;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.banner-arrow:hover {
    background-color: #fff;
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 6px 25px rgba(0, 89, 170, 0.2);
}

.banner-arrow-prev {
    left: 3rem;
}

.banner-arrow-next {
    right: 3rem;
}

.hero-banner {
    background: linear-gradient(135deg, #e8f4fc 0%, #d4eaf7 50%, #c5e3f3 100%);
    padding: 5rem 3rem;
    position: relative;
    overflow: hidden;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-banner-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 89, 170, 0.5) 0%, rgba(60, 117, 187, 0.4) 100%);
    z-index: 1;
}

.hero-banner-image .banner-content {
    z-index: 2;
    position: relative;
}

.banner-quote-white {
    color: #fff !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.banner-author-white span {
    color: #fff !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.banner-windmill {
    position: absolute;
    left: -610px;
    top: -42%;
    width: 1450px;
    height: auto;
    pointer-events: none;
    animation: spin-clockwise 20s linear infinite;
    filter: drop-shadow(0 10px 25px rgba(53, 119, 179, 0.25));
    transform-origin: center center;
}

@keyframes spin-clockwise {
    from {
        transform: scaleX(-1) rotate(0deg);
    }
    to {
        transform: scaleX(-1) rotate(-360deg);
    }
}

.banner-content {
    text-align: center;
    max-width: 700px;
    position: relative;
    z-index: 1;
}

.banner-quote {
    font-family: 'Bricolage Grotesque', sans-serif;
    color: #0059aa;
    font-size: 2.25rem;
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-style: italic;
    letter-spacing: -0.02em;
}

.banner-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.banner-author span {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
}

.banner-author span:first-child {
    color: #508dca;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.banner-author span:last-child {
    color: #0059aa;
    font-size: 1.5rem;
    font-weight: 700;
}

.banner-photo {
    position: absolute;
    right: -355px;
    bottom: -80px;
    width: 1000px;
    height: auto;
    pointer-events: none;
    transform: scaleX(-1);
}

.banner-wind-particles {
    position: absolute;
    top: 15%;
    left: 100px;
    width: 400px;
    height: 200px;
    pointer-events: none;
    overflow: visible;
}

.banner-particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.banner-particle-1 {
    width: 12px;
    height: 6px;
    background: linear-gradient(135deg, rgba(53, 119, 179, 0.4), rgba(100, 180, 220, 0.3));
    border-radius: 50% 50% 50% 50%;
    top: 80px;
    left: 120px;
    animation: banner-leaf-float 7s ease-in-out infinite;
}

.banner-particle-2 {
    width: 8px;
    height: 8px;
    background: rgba(53, 119, 179, 0.25);
    top: 40px;
    left: 180px;
    animation: banner-dust-drift 5s ease-in-out infinite 0.5s;
}

.banner-particle-3 {
    width: 15px;
    height: 7px;
    background: linear-gradient(135deg, rgba(100, 180, 220, 0.35), rgba(53, 119, 179, 0.25));
    border-radius: 50%;
    top: 120px;
    left: 90px;
    animation: banner-leaf-float 9s ease-in-out infinite 1s;
}

.banner-particle-4 {
    width: 6px;
    height: 6px;
    background: rgba(53, 119, 179, 0.3);
    top: 20px;
    left: 150px;
    animation: banner-dust-drift 6s ease-in-out infinite 2s;
}

.banner-particle-5 {
    width: 10px;
    height: 5px;
    background: linear-gradient(135deg, rgba(53, 119, 179, 0.3), rgba(150, 200, 230, 0.2));
    border-radius: 50%;
    top: 60px;
    left: 100px;
    animation: banner-leaf-float 8s ease-in-out infinite 3s;
}

@keyframes banner-leaf-float {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    50% {
        transform: translate(80px, -30px) rotate(45deg) scale(0.9);
        opacity: 0.5;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translate(180px, -20px) rotate(90deg) scale(0.6);
        opacity: 0;
    }
}

@keyframes banner-dust-drift {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0;
    }
    15% {
        opacity: 0.6;
    }
    50% {
        transform: translate(60px, -25px) scale(0.8);
    }
    85% {
        opacity: 0.4;
    }
    100% {
        transform: translate(150px, -10px) scale(0.3);
        opacity: 0;
    }
}

.hero-banner::before,
.hero-banner::after {
    content: '';
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(53, 119, 179, 0.15), transparent);
    border-radius: 2px;
    pointer-events: none;
}

.hero-banner::before {
    width: 60px;
    top: 40%;
    left: 200px;
    animation: banner-wind-line 4s ease-in-out infinite;
}

.hero-banner::after {
    width: 40px;
    top: 55%;
    left: 160px;
    animation: banner-wind-line 5s ease-in-out infinite 1.5s;
}

@keyframes banner-wind-line {
    0% {
        transform: translateX(0) scaleX(0.3);
        opacity: 0;
    }
    30% {
        transform: translateX(30px) scaleX(1);
        opacity: 0.6;
    }
    70% {
        opacity: 0.4;
    }
    100% {
        transform: translateX(100px) scaleX(0.5);
        opacity: 0;
    }
}

@media (max-width: 991.98px) {
    .banner-slider {
        margin: 1.5rem;
    }

    .banner-slides {
        border-radius: 50px;
    }

    .banner-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .banner-arrow-prev {
        left: 2rem;
    }

    .banner-arrow-next {
        right: 2rem;
    }

    .hero-banner {
        min-height: 600px;
        padding: 3rem 1.5rem;
    }

    .banner-windmill {
        width: 1200px;
        left: -520px;
        top: -42%;
    }

    .banner-quote {
        font-size: 1.75rem;
    }

    .banner-author span {
        font-size: 1.35rem;
    }

    .banner-photo {
        width: 650px;
        right: -240px;
        bottom: -50px;
    }

    .banner-content {
        max-width: 420px;
    }

    .banner-quote {
        font-size: 1.5rem;
    }

    .banner-wind-particles {
        width: 300px;
        height: 150px;
        top: 10%;
        left: 60px;
    }

    .hero-banner::before {
        left: 150px;
    }

    .hero-banner::after {
        left: 120px;
    }
}

@media (max-width: 767.98px) {
    .banner-slider {
        margin: 1rem;
    }

    .banner-slides {
        border-radius: 40px;
    }

    .banner-arrow {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .banner-arrow-prev {
        left: 1.5rem;
    }

    .banner-arrow-next {
        right: 1.5rem;
    }

    .banner-dots {
        bottom: 1.5rem;
    }

    .banner-dot {
        width: 10px;
        height: 10px;
    }

    .banner-dot-preview {
        display: none;
    }

    .hero-banner {
        min-height: 500px;
    }

    .banner-windmill {
        width: 950px;
        left: -410px;
        top: -42%;
    }

    .banner-content {
        max-width: 340px;
    }

    .banner-quote {
        font-size: 1.15rem;
    }

    .banner-author span {
        font-size: 1.1rem;
    }

    .banner-photo {
        width: 480px;
        right: -180px;
        bottom: -40px;
    }

    .banner-wind-particles {
        width: 250px;
        height: 120px;
        top: 8%;
        left: 40px;
    }

    .hero-banner::before,
    .hero-banner::after {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .banner-slider {
        margin: 1rem;
    }

    .banner-slides {
        border-radius: 30px;
    }

    .banner-arrow {
        width: 30px;
        height: 30px;
        font-size: 0.75rem;
    }

    .banner-arrow-prev {
        left: 1rem;
    }

    .banner-arrow-next {
        right: 1rem;
    }

    .banner-dots {
        bottom: 1rem;
        gap: 0.5rem;
    }

    .banner-dot {
        width: 8px;
        height: 8px;
    }

    .hero-banner {
        padding: 2.5rem 1rem;
        min-height: 450px;
    }

    .banner-windmill {
        width: 700px;
        left: -300px;
        top: -32%;
    }

    .banner-content {
        max-width: 280px;
    }

    .banner-quote {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .banner-author span {
        font-size: 0.75rem;
    }

    .banner-author span:last-child {
        font-size: 0.8rem;
    }

    .banner-photo {
        width: 280px;
        right: -100px;
        bottom: -25px;
    }

    .banner-wind-particles {
        width: 180px;
        height: 90px;
        top: 5%;
        left: 20px;
    }

    .banner-particle-1,
    .banner-particle-2,
    .banner-particle-3,
    .banner-particle-4,
    .banner-particle-5 {
        transform: scale(0.7);
    }
}

.services-section {
    padding: 3rem 2rem 4rem;
    margin: 0;
    background: #f8fbfd;
}

.services-container {
    max-width: 1100px;
    margin: 0 auto;
}

.services-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.services-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    color: #0059aa;
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.services-subtitle {
    font-family: 'Bricolage Grotesque', sans-serif;
    color: #3c75bb;
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 650px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.service-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card-link:hover {
    text-decoration: none;
    color: inherit;
}

.service-card {
    background: #fff;
    border-radius: 18px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 89, 170, 0.1);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    cursor: pointer;
}

.service-card.animate-on-scroll {
    transition: opacity 0.6s ease-out, transform 0.6s ease-out, box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card.animate-on-scroll.animated {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease-out;
}

.service-card::before {
    display: none;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0, 89, 170, 0.18);
}

.service-card.animated:hover {
    transform: translateY(-6px);
}

.service-card-image {
    width: 100%;
    height: 150px;
    margin: 0;
    margin-bottom: -1px;
    border-radius: 0;
    box-shadow: none;
    position: relative;
    overflow: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.service-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(to top, rgba(255,255,255,0.9), transparent);
    pointer-events: none;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
}

.service-card:hover .service-card-image img {
    transform: scale(1.08) translateZ(0);
}

.service-card-content {
    padding: 1rem 1.25rem 1.25rem;
    background: #fff;
    position: relative;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.service-card-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    color: #0059aa;
    font-size: 1.1rem;
    font-weight: 700;
    text-align: left;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.service-card:hover .service-card-title {
    color: #3c75bb;
}

.service-card-text {
    font-family: 'Bricolage Grotesque', sans-serif;
    color: #508dca;
    font-size: 0.9rem;
    line-height: 1.6;
    text-align: left;
    margin: 0;
}

@media (max-width: 991.98px) {
    .services-section {
        padding: 2.5rem 1.5rem 3rem;
    }

    .services-header {
        margin-bottom: 2rem;
    }

    .services-title {
        font-size: 2.25rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .service-card-image {
        height: 130px;
    }

    .service-card-content {
        padding: 0.9rem 1.1rem 1.1rem;
    }

    .service-card-title {
        font-size: 1rem;
    }

    .service-card-text {
        font-size: 0.85rem;
        line-height: 1.5;
    }
}

@media (max-width: 767.98px) {
    .services-section {
        padding: 2rem 1rem 2.5rem;
    }

    .services-title {
        font-size: 1.85rem;
    }

    .services-subtitle {
        font-size: 0.95rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.85rem;
    }

    .service-card {
        border-radius: 14px;
    }

    .service-card-image {
        height: 110px;
    }

    .service-card-content {
        padding: 0.75rem 1rem 1rem;
    }

    .service-card-title {
        font-size: 0.9rem;
        margin-bottom: 0.35rem;
    }

    .service-card-text {
        font-size: 0.8rem;
        line-height: 1.45;
    }
}

@media (max-width: 575.98px) {
    .services-section {
        padding: 2rem 1rem 2.5rem;
    }

    .services-title {
        font-size: 1.6rem;
    }

    .services-subtitle {
        font-size: 0.9rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .service-card {
        border-radius: 12px;
    }

    .service-card-image {
        height: 95px;
    }

    .service-card-content {
        padding: 0.65rem 0.85rem 0.85rem;
    }

    .service-card-title {
        font-size: 0.85rem;
        margin-bottom: 0.3rem;
    }

    .service-card-text {
        font-size: 0.75rem;
        line-height: 1.4;
    }
}

.services-page-section {
    padding: 3rem 2rem 4rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
}

.services-page-container {
    max-width: 1100px;
    margin: 0 auto;
}

.services-page-section .services-header {
    margin-bottom: 2.5rem;
}

.services-page-section .services-title {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.services-page-section .services-subtitle {
    font-size: 1.1rem;
    max-width: 650px;
}

.services-page-section .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.services-page-section .service-card {
    background: #fff;
    border-radius: 18px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 89, 170, 0.1);
}

.services-page-section .service-card.animate-on-scroll {
    transition: opacity 0.6s ease-out, transform 0.6s ease-out, box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.services-page-section .service-card.animate-on-scroll.animated {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease-out;
}

.services-page-section .service-card::before {
    display: none;
}

.services-page-section .service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0, 89, 170, 0.18);
}

.services-page-section .service-card-image {
    width: 100%;
    height: 150px;
    margin: 0;
    margin-bottom: -1px;
    border-radius: 0;
    box-shadow: none;
    position: relative;
    overflow: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.services-page-section .service-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(to top, rgba(255,255,255,0.9), transparent);
    pointer-events: none;
}

.services-page-section .service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
}

.services-page-section .service-card:hover .service-card-image img {
    transform: scale(1.08) translateZ(0);
}

.services-page-section .service-card-content {
    padding: 1rem 1.25rem 1.25rem;
    background: #fff;
    position: relative;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.services-page-section .service-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: left;
    color: #0059aa;
    transition: color 0.3s ease;
}

.services-page-section .service-card:hover .service-card-title {
    color: #3c75bb;
}

.services-page-section .service-card-text {
    font-size: 0.9rem;
    line-height: 1.6;
    text-align: left;
    color: #508dca;
}

@media (max-width: 991.98px) {
    .services-page-section {
        padding: 2.5rem 1.5rem 3rem;
    }

    .services-page-section .services-header {
        margin-bottom: 2rem;
    }

    .services-page-section .services-title {
        font-size: 2.25rem;
    }

    .services-page-section .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .services-page-section .service-card-image {
        height: 130px;
    }

    .services-page-section .service-card-content {
        padding: 0.9rem 1.1rem 1.1rem;
    }

    .services-page-section .service-card-title {
        font-size: 1rem;
    }

    .services-page-section .service-card-text {
        font-size: 0.85rem;
        line-height: 1.5;
    }
}

@media (max-width: 767.98px) {
    .services-page-section {
        padding: 2rem 1rem 2.5rem;
    }

    .services-page-section .services-title {
        font-size: 1.85rem;
    }

    .services-page-section .services-subtitle {
        font-size: 0.95rem;
    }

    .services-page-section .services-subtitle br {
        display: none;
    }

    .services-page-section .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.85rem;
    }

    .services-page-section .service-card {
        border-radius: 14px;
    }

    .services-page-section .service-card-image {
        height: 110px;
    }

    .services-page-section .service-card-content {
        padding: 0.75rem 1rem 1rem;
    }

    .services-page-section .service-card-title {
        font-size: 0.9rem;
        margin-bottom: 0.35rem;
    }

    .services-page-section .service-card-text {
        font-size: 0.8rem;
        line-height: 1.45;
    }
}

@media (max-width: 575.98px) {
    .services-page-section {
        padding: 2rem 1rem 2.5rem;
    }

    .services-page-section .services-title {
        font-size: 1.6rem;
    }

    .services-page-section .services-subtitle {
        font-size: 0.9rem;
    }

    .services-page-section .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .services-page-section .service-card {
        border-radius: 12px;
    }

    .services-page-section .service-card-image {
        height: 95px;
    }

    .services-page-section .service-card-content {
        padding: 0.65rem 0.85rem 0.85rem;
    }

    .services-page-section .service-card-title {
        font-size: 0.85rem;
        margin-bottom: 0.3rem;
    }

    .services-page-section .service-card-text {
        font-size: 0.75rem;
        line-height: 1.4;
    }
}

.mental-health-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5rem;
    padding: 6rem 4rem;
    margin: 0;
    background: linear-gradient(180deg, #fff 0%, #f8fbfd 100%);
}

.mental-health-content {
    flex: 1;
    max-width: 550px;
    text-align: center;
}

.mental-health-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    color: #0059aa;
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.mental-health-text {
    font-family: 'Bricolage Grotesque', sans-serif;
    color: #3c75bb;
    font-size: 1.15rem;
    line-height: 1.9;
    margin: 0;
}

.mental-health-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #0059aa 0%, #3c75bb 100%);
    color: #fff;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 100px;
    text-decoration: none;
    margin-top: 2.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 89, 170, 0.25);
}

.mental-health-btn:hover {
    background: linear-gradient(135deg, #004080 0%, #0059aa 100%);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 89, 170, 0.35);
}

.mental-health-image {
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 25px 60px rgba(0, 89, 170, 0.15);
}

.mental-health-image img {
    width: 480px;
    height: 520px;
    border-radius: 30px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.mental-health-image:hover img {
    transform: scale(1.05);
}

@media (max-width: 991.98px) {
    .mental-health-section {
        padding: 3rem 2rem;
        gap: 3rem;
    }

    .mental-health-title {
        font-size: 2rem;
    }

    .mental-health-image img {
        width: 450px;
        height: 460px;
    }
}

@media (max-width: 767.98px) {
    .mental-health-section {
        padding: 2.5rem 1.5rem;
        gap: 1.5rem;
    }

    .mental-health-content {
        max-width: 55%;
    }

    .mental-health-title {
        font-size: 1.5rem;
    }

    .mental-health-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .mental-health-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
        margin-top: 1.5rem;
    }

    .mental-health-image {
        border-radius: 40px;
    }

    .mental-health-image img {
        width: 200px;
        height: 280px;
        border-radius: 40px;
    }
}

@media (max-width: 575.98px) {
    .mental-health-section {
        padding: 2rem 1rem;
        margin: 0 1rem;
        gap: 1rem;
    }

    .mental-health-content {
        max-width: 60%;
    }

    .mental-health-title {
        font-size: 1.25rem;
    }

    .mental-health-text {
        font-size: 0.85rem;
    }

    .mental-health-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
        margin-top: 1rem;
    }

    .mental-health-image {
        border-radius: 25px;
    }

    .mental-health-image img {
        width: 140px;
        height: 200px;
        border-radius: 25px;
    }
}

.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #0059aa 0%, #3c75bb 100%);
    color: #fff;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    box-shadow: 0 8px 30px rgba(0, 89, 170, 0.25);
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, #004080 0%, #0059aa 100%);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 89, 170, 0.35);
    border-radius: 20px;
}

.scroll-to-top:active {
    transform: translateY(-2px);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media (max-width: 767.98px) {
    .scroll-to-top {
        width: 45px;
        height: 45px;
        font-size: 1rem;
        bottom: 1.5rem;
        right: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .scroll-to-top {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
        bottom: 1rem;
        right: 1rem;
    }
}

.contact-section {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-wrapper {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.contact-form-side {
    flex: 2;
}

.contact-details-side {
    flex: 1;
}

.contact-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    color: #0059aa;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
}

.contact-form-container {
    background-color: rgba(120, 204, 242, 0.25);
    border-radius: 30px;
    padding: 2.5rem;
}

.contact-details-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    color: #0059aa;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
}

.contact-details-container {
    background-color: rgba(120, 204, 242, 0.25);
    border-radius: 30px;
    padding: 2rem;
}

.contact-detail-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(53, 120, 180, 0.15);
}

.contact-detail-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-detail-item:first-child {
    padding-top: 0;
}

.contact-detail-icon {
    width: 45px;
    height: 45px;
    background-color: #3c75bb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-icon i {
    color: #fff;
    font-size: 1.1rem;
}

.contact-detail-content h4 {
    font-family: 'Bricolage Grotesque', sans-serif;
    color: #0059aa;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.contact-detail-content p {
    font-family: 'Bricolage Grotesque', sans-serif;
    color: #3c75bb;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-group label {
    font-family: 'Bricolage Grotesque', sans-serif;
    color: #0059aa;
    font-size: 0.95rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1rem;
    padding: 0.875rem 1rem;
    border: 1px solid #3c75bb;
    border-radius: 10px;
    background-color: #fff;
    color: #0059aa;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0059aa;
    box-shadow: 0 0 0 3px rgba(53, 120, 180, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a0b8d4;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath fill='%233578b4' d='M7 10L2 5h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 14px;
    padding-right: 2.5rem;
    min-height: 50px;
    border: 2px solid #3c75bb;
    border-radius: 12px;
}

.form-group select:hover {
    border-color: #0059aa;
    background-color: #f8fafc;
}

.form-group select:focus {
    border-color: #0059aa;
    border-width: 2px;
    box-shadow: 0 0 0 3px rgba(53, 120, 180, 0.15);
}

.form-group select option {
    font-family: 'Bricolage Grotesque', sans-serif;
    padding: 12px 16px;
    background-color: #fff;
    color: #0059aa;
}

.form-group select option:hover,
.form-group select option:checked {
    background-color: #e8f0f8;
    color: #0059aa;
}

.form-group select option:first-child {
    color: #a0b8d4;
}

.form-group select option[value=""] {
    color: #a0b8d4;
    font-style: italic;
}

.form-group select.placeholder-active {
    color: #a0b8d4;
}

.custom-select {
    position: relative;
    width: 100%;
}

.custom-select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 1rem;
    background-color: #fff;
    border: 1px solid #3c75bb;
    border-radius: 10px;
    cursor: pointer;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    min-height: 50px;
}

.custom-select-trigger:hover {
    border-color: #0059aa;
    background-color: #f8fafc;
}

.custom-select.open .custom-select-trigger {
    border-color: #0059aa;
    box-shadow: 0 0 0 3px rgba(53, 120, 180, 0.15);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom: none;
}

.custom-select-value {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1rem;
    color: #0059aa;
}

.custom-select-value[data-placeholder="true"] {
    color: #a0b8d4;
}

.custom-select-arrow {
    color: #0059aa;
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.custom-select.open .custom-select-arrow {
    transform: rotate(180deg);
}

.custom-select-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    border: 1px solid #0059aa;
    border-top: none;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    z-index: 100;
    box-shadow: 0 8px 20px rgba(53, 120, 180, 0.15);
}

.custom-select.open .custom-select-options {
    max-height: 200px;
    opacity: 1;
    overflow-y: auto;
}

.custom-select-option {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1rem;
    color: #0059aa;
    padding: 0.875rem 1rem;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
    border-bottom: 1px solid rgba(98, 141, 193, 0.15);
}

.custom-select-option:last-child {
    border-bottom: none;
}

.custom-select-option:hover {
    background-color: rgba(120, 204, 242, 0.3);
    color: #0059aa;
}

.custom-select-option.selected {
    background-color: rgba(120, 204, 242, 0.5);
    color: #0059aa;
    font-weight: 600;
}

@media (max-width: 575.98px) {
    .custom-select-trigger {
        padding: 0.75rem;
    }

    .custom-select-value,
    .custom-select-option {
        font-size: 0.95rem;
    }

    .custom-select-option {
        padding: 0.75rem;
    }
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.contact-submit-btn {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background-color: #3c75bb;
    border: none;
    border-radius: 99px;
    padding: 0.875rem 2.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.contact-submit-btn:hover {
    background-color: #4a6fa3;
    transform: translateY(-2px);
}

.contact-response-time {
    font-family: 'Bricolage Grotesque', sans-serif;
    color: #0059aa;
    font-size: 0.9rem;
    font-style: italic;
}

@media (max-width: 991.98px) {
    .contact-wrapper {
        flex-direction: column-reverse;
    }

    .contact-form-side,
    .contact-details-side {
        flex: none;
        width: 100%;
    }

    .contact-details-container {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .contact-detail-item {
        flex: 1 1 calc(50% - 0.75rem);
        border-bottom: none;
        padding: 0;
    }
}

@media (max-width: 767.98px) {
    .contact-section {
        padding: 3rem 1.5rem;
    }

    .contact-title,
    .contact-details-title {
        font-size: 1.75rem;
    }

    .contact-form-container,
    .contact-details-container {
        padding: 2rem;
        border-radius: 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-form {
        gap: 1rem;
    }

    .form-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .contact-submit-btn {
        width: 100%;
        text-align: center;
    }

    .contact-response-time {
        text-align: center;
    }

    .contact-details-container {
        flex-direction: column;
    }

    .contact-detail-item {
        flex: none;
        width: 100%;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(53, 120, 180, 0.15);
    }

    .contact-detail-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .contact-detail-item:first-child {
        padding-top: 0;
    }
}

@media (max-width: 575.98px) {
    .contact-section {
        padding: 2rem 1rem;
    }

    .contact-title,
    .contact-details-title {
        font-size: 1.5rem;
    }

    .contact-form-container,
    .contact-details-container {
        padding: 1.5rem;
        border-radius: 20px;
    }

    .form-group label {
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 0.95rem;
        padding: 0.75rem;
    }

    .contact-submit-btn {
        padding: 0.75rem 2rem;
        font-size: 0.95rem;
    }

    .contact-response-time {
        font-size: 0.85rem;
    }

    .contact-detail-icon {
        width: 40px;
        height: 40px;
    }

    .contact-detail-icon i {
        font-size: 1rem;
    }

    .contact-detail-content h4 {
        font-size: 0.95rem;
    }

    .contact-detail-content p {
        font-size: 0.9rem;
    }
}

.contact-map-container {
    margin-top: 3rem;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(53, 120, 180, 0.15);
}

.contact-map-container iframe {
    display: block;
    width: 100%;
    height: 400px;
    border: none;
}

@media (max-width: 767.98px) {
    .contact-map-container {
        margin-top: 2rem;
        border-radius: 20px;
    }

    .contact-map-container iframe {
        height: 300px;
    }
}

@media (max-width: 575.98px) {
    .contact-map-container {
        margin-top: 1.5rem;
        border-radius: 15px;
    }

    .contact-map-container iframe {
        height: 250px;
    }
}

.btn-directions {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 0.75rem 1.5rem;
    background-color: #0059aa;
    color: #fff;
    border-radius: 25px;
    text-decoration: none;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-directions:hover {
    background-color: #3c75bb;
    transform: translateY(-2px);
}

.btn-directions i {
    font-size: 1.1rem;
}

.social-page-section {
    padding: 4rem 2rem 5rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
}

.social-page-container {
    max-width: 1100px;
    margin: 0 auto;
}

.social-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.social-page-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 2.75rem;
    font-weight: 700;
    color: #0059aa;
    margin-bottom: 1.25rem;
}

.social-page-subtitle {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1.1rem;
    color: #3c75bb;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.social-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.social-gallery-card {
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 89, 170, 0.1);
    transition: all 0.4s ease;
}

.social-gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 89, 170, 0.2);
}

.social-gallery-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    cursor: pointer;
}

.social-gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.social-gallery-card:hover .social-gallery-image img {
    transform: scale(1.08);
}

.social-gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 89, 170, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.social-gallery-overlay i {
    color: #fff;
    font-size: 2rem;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.social-gallery-card:hover .social-gallery-overlay {
    opacity: 1;
}

.social-gallery-card:hover .social-gallery-overlay i {
    transform: scale(1);
}

@media (max-width: 991.98px) {
    .social-page-section {
        padding: 3rem 1.5rem 4rem;
    }

    .social-page-title {
        font-size: 2.25rem;
    }

    .social-page-subtitle {
        font-size: 1rem;
    }

    .social-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 767.98px) {
    .social-page-section {
        padding: 2.5rem 1rem 3.5rem;
    }

    .social-header {
        margin-bottom: 2.5rem;
    }

    .social-page-title {
        font-size: 1.85rem;
    }

    .social-page-subtitle {
        font-size: 0.95rem;
    }

    .social-page-subtitle br {
        display: none;
    }

    .social-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .social-gallery-card {
        border-radius: 16px;
    }
}

@media (max-width: 575.98px) {
    .social-page-section {
        padding: 2rem 1rem 3rem;
    }

    .social-page-title {
        font-size: 1.6rem;
    }

    .social-page-subtitle {
        font-size: 0.9rem;
    }

    .social-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .social-gallery-card {
        border-radius: 12px;
    }

    .social-gallery-overlay i {
        font-size: 1.5rem;
    }
}

.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.lightbox-modal.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 85%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 10001;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.8;
}

.lightbox-close:hover {
    transform: scale(1.1);
    opacity: 1;
}

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.15);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    z-index: 10001;
}

.lightbox-arrow:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.lightbox-prev {
    left: 1.5rem;
}

.lightbox-next {
    right: 1.5rem;
}

.lightbox-counter {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 0.9rem;
    opacity: 0.8;
}

.social-gallery-item {
    cursor: pointer;
}

.social-gallery-item img {
    transition: transform 0.3s ease;
}

.social-gallery-item:hover img {
    transform: scale(1.02);
}

@media (max-width: 767.98px) {
    .lightbox-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .lightbox-prev {
        left: 0.75rem;
    }

    .lightbox-next {
        right: 0.75rem;
    }

    .lightbox-close {
        top: 1rem;
        right: 1rem;
        font-size: 2rem;
    }

    .lightbox-content {
        max-width: 95%;
    }
}

.expertises-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.expertises-container {
    border: 1px solid #0059aa;
    border-radius: 59px;
    padding: 3rem;
}

.expertises-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    color: #0059aa;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

.expertises-subtitle {
    font-family: 'Bricolage Grotesque', sans-serif;
    color: #0059aa;
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 2.5rem auto;
}

.expertises-list {
    display: flex;
    gap: 4rem;
    justify-content: center;
}

.expertise-column {
    list-style: none;
    padding: 0;
    margin: 0;
}

.expertise-item {
    font-family: 'Bricolage Grotesque', sans-serif;
    color: #3c75bb;
    font-size: 1rem;
    font-weight: 500;
    padding: 1rem 0;
    padding-left: 3.5rem;
    position: relative;
    transition: color 0.3s ease;
}

.expertise-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background-image: url('/images/pages/RuzgarGulu.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.expertise-item:hover {
    color: #3c75bb;
}

@media (max-width: 991.98px) {
    .expertises-container {
        padding: 2.5rem;
        border-radius: 45px;
    }

    .expertises-title {
        font-size: 2rem;
    }

    .expertises-list {
        gap: 3rem;
    }
}

@media (max-width: 767.98px) {
    .expertises-section {
        padding: 3rem 1.5rem;
    }

    .expertises-container {
        padding: 2rem;
        border-radius: 35px;
    }

    .expertises-title {
        font-size: 1.75rem;
    }

    .expertises-subtitle {
        font-size: 1rem;
    }

    .expertises-list {
        flex-direction: column;
        gap: 0;
    }

    .expertise-item {
        font-size: 0.95rem;
        padding: 0.75rem 0;
        padding-left: 2.8rem;
    }

    .expertise-item::before {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 575.98px) {
    .expertises-section {
        padding: 2rem 1rem;
    }

    .expertises-container {
        padding: 1.5rem;
        border-radius: 25px;
    }

    .expertises-title {
        font-size: 1.5rem;
    }

    .expertises-subtitle {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

    .expertise-item {
        font-size: 0.9rem;
        padding: 0.6rem 0;
        padding-left: 2.2rem;
    }

    .expertise-item::before {
        width: 35px;
        height: 35px;
    }
}

.about-section {
    min-height: calc(100vh - 80px);
    background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
    padding: 5rem 2rem;
    display: flex;
    align-items: center;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.about-subtitle {
    font-family: 'Bricolage Grotesque', sans-serif;
    color: #3c75bb;
    font-size: 1rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    background: linear-gradient(135deg, rgba(0, 89, 170, 0.1) 0%, rgba(69, 166, 218, 0.1) 100%);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
}

.about-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    color: #0059aa;
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.about-text {
    font-family: 'Bricolage Grotesque', sans-serif;
    color: #3c75bb;
    font-size: 1.05rem;
    line-height: 1.9;
    text-align: justify;
    margin-bottom: 1rem;
}

.about-text:last-of-type {
    margin-bottom: 0;
}

.about-photo-area {
    float: right;
    margin-left: 3rem;
    margin-bottom: 1.5rem;
}

.about-photo {
    max-width: 450px;
    width: 100%;
    height: auto;
}

@media (max-width: 991.98px) {
    .about-photo {
        max-width: 350px;
    }
}

@media (max-width: 767.98px) {
    .about-section {
        padding: 3rem 1.5rem;
    }

    .about-title {
        font-size: 2rem;
    }

    .about-subtitle {
        font-size: 0.9rem;
        padding: 0.4rem 1rem;
    }

    .about-text {
        font-size: 1rem;
    }

    .about-photo {
        max-width: 280px;
    }

    .about-photo-area {
        margin-left: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .about-section {
        padding: 2rem 1rem;
    }

    .about-title {
        font-size: 1.75rem;
    }

    .about-subtitle {
        font-size: 0.8rem;
        padding: 0.35rem 0.85rem;
    }

    .about-text {
        font-size: 0.95rem;
    }

    .about-photo {
        max-width: 180px;
    }

    .about-photo-area {
        margin-left: 1rem;
    }
}

.education-section {
    background: #f8fbfd;
    padding: 5rem 2rem;
}

.education-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    background: #fff;
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 89, 170, 0.08);
}

.education-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    color: #0059aa;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.education-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem 3rem;
}

.education-item {
    font-family: 'Bricolage Grotesque', sans-serif;
    color: #3c75bb;
    font-size: 1rem;
    font-weight: 500;
    padding: 1rem 0;
    padding-left: 4.5rem;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    min-height: 60px;
}

.education-item:hover {
    color: #0059aa;
    transform: translateX(4px);
}

.education-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background-image: url('/images/pages/RuzgarGulu.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.3s ease;
}

.education-item:hover::before {
    transform: translateY(-50%) rotate(45deg);
}

@media (max-width: 991.98px) {
    .education-list {
        grid-template-columns: 1fr;
        gap: 0.25rem;
    }
}

@media (max-width: 767.98px) {
    .education-section {
        padding: 3rem 1.5rem;
    }

    .education-container {
        padding: 2rem;
        border-radius: 24px;
    }

    .education-title {
        font-size: 2rem;
    }

    .education-item {
        font-size: 0.95rem;
        padding: 0.75rem 0;
        padding-left: 3.5rem;
        min-height: 45px;
    }

    .education-item::before {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 575.98px) {
    .education-section {
        padding: 2rem 1rem;
    }

    .education-container {
        padding: 1.5rem;
        border-radius: 20px;
    }

    .education-title {
        font-size: 1.75rem;
    }

    .education-item {
        font-size: 0.9rem;
        padding: 0.6rem 0;
        padding-left: 2.75rem;
        min-height: 35px;
    }

    .education-item::before {
        width: 35px;
        height: 35px;
    }
}

.legal-section {
    min-height: calc(100vh - 80px);
    background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
    padding: 5rem 2rem;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    background: #fff;
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 89, 170, 0.08);
}

.legal-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    color: #0059aa;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.legal-date {
    font-family: 'Bricolage Grotesque', sans-serif;
    color: #508dca;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.legal-content h2 {
    font-family: 'Bricolage Grotesque', sans-serif;
    color: #3c75bb;
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.legal-content h3 {
    font-family: 'Bricolage Grotesque', sans-serif;
    color: #45a6da;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.legal-content p {
    font-family: 'Bricolage Grotesque', sans-serif;
    color: #45a6da;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.legal-content ul li {
    font-family: 'Bricolage Grotesque', sans-serif;
    color: #45a6da;
    font-size: 1rem;
    line-height: 1.8;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.legal-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 8px;
    height: 8px;
    background: #78ccf2;
    border-radius: 50%;
}

.legal-content a {
    color: #0059aa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: #3c75bb;
    text-decoration: underline;
}

@media (max-width: 767.98px) {
    .legal-section {
        padding: 3rem 1.5rem;
    }

    .legal-container {
        padding: 2rem;
        border-radius: 24px;
    }

    .legal-title {
        font-size: 2rem;
    }

    .legal-content h2 {
        font-size: 1.1rem;
    }

    .legal-content p,
    .legal-content ul li {
        font-size: 0.95rem;
    }
}

@media (max-width: 575.98px) {
    .legal-section {
        padding: 2rem 1rem;
    }

    .legal-container {
        padding: 1.5rem;
        border-radius: 20px;
    }

    .legal-title {
        font-size: 1.75rem;
    }

    .legal-content h2 {
        font-size: 1rem;
    }

    .legal-content p,
    .legal-content ul li {
        font-size: 0.9rem;
    }
}

.expertises-page-section {
    min-height: calc(100vh - 80px);
    background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
    padding: 5rem 2rem;
}

.expertises-page-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    background: #fff;
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 89, 170, 0.08);
}

.expertises-header {
    text-align: center;
    margin-bottom: 2rem;
}

.expertises-page-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    color: #0059aa;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.expertises-page-subtitle {
    font-family: 'Bricolage Grotesque', sans-serif;
    color: #3c75bb;
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

.expertises-list-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem 3rem;
}

.expertises-list-column {
    list-style: none;
    padding: 0;
    margin: 0;
}

.expertises-list-item {
    font-family: 'Bricolage Grotesque', sans-serif;
    color: #3c75bb;
    font-size: 1rem;
    font-weight: 500;
    padding: 1rem 0;
    padding-left: 4.5rem;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    min-height: 60px;
}

.expertises-list-item:hover {
    color: #0059aa;
    transform: translateX(4px);
}

.expertises-list-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background-image: url('/images/pages/RuzgarGulu.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.3s ease;
}

.expertises-list-item:hover::before {
    transform: translateY(-50%) rotate(45deg);
}

@media (max-width: 991.98px) {
    .expertises-list-container {
        grid-template-columns: 1fr;
        gap: 0.25rem;
    }
}

@media (max-width: 767.98px) {
    .expertises-page-section {
        padding: 3rem 1.5rem;
    }

    .expertises-page-container {
        padding: 2rem;
        border-radius: 24px;
    }

    .expertises-page-title {
        font-size: 2rem;
    }

    .expertises-page-subtitle {
        font-size: 1rem;
    }

    .expertises-list-item {
        font-size: 0.95rem;
        padding: 0.75rem 0;
        padding-left: 3.5rem;
        min-height: 45px;
    }

    .expertises-list-item::before {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 575.98px) {
    .expertises-page-section {
        padding: 2rem 1rem;
    }

    .expertises-page-container {
        padding: 1.5rem;
        border-radius: 20px;
    }

    .expertises-page-title {
        font-size: 1.75rem;
    }

    .expertises-page-subtitle {
        font-size: 0.95rem;
    }

    .expertises-list-item {
        font-size: 0.9rem;
        padding: 0.6rem 0;
        padding-left: 2.75rem;
        min-height: 35px;
    }

    .expertises-list-item::before {
        width: 35px;
        height: 35px;
    }
}

.contact-page-section {
    min-height: calc(100vh - 80px);
    background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
    padding: 5rem 2rem;
}

.contact-page-container {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

.contact-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.contact-page-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    color: #0059aa;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.contact-page-subtitle {
    font-family: 'Bricolage Grotesque', sans-serif;
    color: #3c75bb;
    font-size: 1.1rem;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.contact-info-box {
    background: #fff;
    border-radius: 16px;
    padding: 1.25rem;
    box-shadow: 0 4px 20px rgba(0, 89, 170, 0.06);
    display: flex;
    align-items: center;
    gap: 0.875rem;
    transition: all 0.3s ease;
}

.contact-info-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 89, 170, 0.1);
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
}

.contact-info-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.contact-info-box:hover .contact-info-icon img {
    transform: rotate(45deg);
}

.contact-info-text h4 {
    font-family: 'Bricolage Grotesque', sans-serif;
    color: #0059aa;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.contact-info-text p {
    font-family: 'Bricolage Grotesque', sans-serif;
    color: #508dca;
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
}

.contact-info-text a {
    color: #508dca;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-text a:hover {
    color: #0059aa;
}

.contact-bottom-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact-form-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 89, 170, 0.08);
}

.contact-form-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    color: #0059aa;
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.contact-page-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.form-field label {
    font-family: 'Bricolage Grotesque', sans-serif;
    color: #3c75bb;
    font-size: 0.85rem;
    font-weight: 500;
}

.form-field input,
.form-field select,
.form-field textarea {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 0.9rem;
    color: #0059aa;
    background: #f8fbfd;
    border: 1px solid rgba(0, 89, 170, 0.15);
    border-radius: 10px;
    padding: 0.7rem 0.9rem;
    transition: all 0.3s ease;
    outline: none;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: #0059aa;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(0, 89, 170, 0.1);
}

.form-field select {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #f8fbfd;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%230059aa' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.9rem center;
    padding-right: 2.25rem;
    height: auto;
    line-height: 1.5;
}

.custom-select {
    position: relative;
    width: 100%;
}

.custom-select-trigger {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 0.9rem;
    color: #0059aa;
    background: #f8fbfd;
    border: 1px solid rgba(0, 89, 170, 0.15);
    border-radius: 10px;
    padding: 0.7rem 0.9rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.custom-select-trigger:hover {
    border-color: #0059aa;
}

.custom-select.open .custom-select-trigger {
    border-color: #0059aa;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(0, 89, 170, 0.1);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.custom-select-trigger i {
    font-size: 0.75rem;
    color: #0059aa;
    transition: transform 0.3s ease;
}

.custom-select.open .custom-select-trigger i {
    transform: rotate(180deg);
}

.custom-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #0059aa;
    border-top: none;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0, 89, 170, 0.15);
}

.custom-select.open .custom-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.custom-option {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 0.9rem;
    color: #0059aa;
    padding: 0.7rem 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.custom-option:hover {
    background: #f0f7ff;
}

.custom-option.selected {
    background: #e6f0fa;
    font-weight: 500;
}

.form-field textarea {
    resize: none;
    height: 80px;
}

.form-submit-area {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-top: 0.25rem;
}

.contact-form-btn {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #0059aa 0%, #3c75bb 100%);
    border: none;
    border-radius: 10px;
    padding: 0.75rem 1.75rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.contact-form-btn:hover {
    background: linear-gradient(135deg, #004080 0%, #0059aa 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 89, 170, 0.3);
}

.contact-form-btn i {
    font-size: 0.85rem;
}

.form-response-note {
    font-family: 'Bricolage Grotesque', sans-serif;
    color: #78ccf2;
    font-size: 0.8rem;
    margin: 0;
}

.contact-map-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 89, 170, 0.08);
    min-height: 100%;
}

.contact-map-card iframe {
    display: block;
}

@media (max-width: 991.98px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-bottom-row {
        grid-template-columns: 1fr;
    }

    .contact-map-card {
        min-height: 300px;
    }
}

@media (max-width: 767.98px) {
    .contact-page-section {
        padding: 3rem 1.5rem;
    }

    .contact-page-title {
        font-size: 2rem;
    }

    .contact-page-subtitle {
        font-size: 1rem;
    }

    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .contact-info-box {
        padding: 1rem;
        border-radius: 14px;
    }

    .contact-info-icon {
        width: 35px;
        height: 35px;
        min-width: 35px;
    }

    .contact-info-text h4 {
        font-size: 0.8rem;
    }

    .contact-info-text p {
        font-size: 0.8rem;
    }

    .contact-form-card {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .contact-form-title {
        font-size: 1.25rem;
    }

    .form-row-group {
        grid-template-columns: 1fr;
        gap: 0.875rem;
    }

    .form-submit-area {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .contact-form-btn {
        width: 100%;
        justify-content: center;
    }

    .contact-map-card {
        min-height: 250px;
        border-radius: 16px;
    }
}

@media (max-width: 575.98px) {
    .contact-page-section {
        padding: 2rem 1rem;
    }

    .contact-page-title {
        font-size: 1.75rem;
    }

    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .contact-info-box {
        padding: 0.875rem;
        border-radius: 12px;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .contact-info-icon {
        width: 30px;
        height: 30px;
        min-width: 30px;
    }

    .contact-info-text h4 {
        font-size: 0.75rem;
    }

    .contact-info-text p {
        font-size: 0.75rem;
    }

    .contact-form-card {
        padding: 1.25rem;
        border-radius: 14px;
    }

    .contact-form-title {
        font-size: 1.15rem;
    }

    .form-field input,
    .form-field select,
    .form-field textarea {
        padding: 0.65rem 0.8rem;
        font-size: 0.85rem;
    }

    .contact-map-card {
        min-height: 200px;
        border-radius: 14px;
    }
}

.blog-page-section {
    min-height: calc(100vh - 80px);
    background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
    padding: 5rem 2rem;
}

.blog-page-container {
    max-width: 1200px;
    margin: 0 auto;
}

.blog-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.blog-page-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    color: #0059aa;
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.blog-page-subtitle {
    font-family: 'Bricolage Grotesque', sans-serif;
    color: #508dca;
    font-size: 1.15rem;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.blog-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(0, 89, 170, 0.08);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 89, 170, 0.15);
}

.blog-card-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.08);
}

.blog-card-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, #0059aa 0%, #3c75bb 100%);
    color: #fff;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-card-content {
    padding: 1.5rem;
}

.blog-card-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.blog-card-date,
.blog-card-read-time {
    font-family: 'Bricolage Grotesque', sans-serif;
    color: #78ccf2;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.blog-card-date i,
.blog-card-read-time i {
    font-size: 0.75rem;
}

.blog-card-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    color: #0059aa;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-card-title {
    color: #3c75bb;
}

.blog-card-excerpt {
    font-family: 'Bricolage Grotesque', sans-serif;
    color: #508dca;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Bricolage Grotesque', sans-serif;
    color: #0059aa;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease, color 0.3s ease;
}

.blog-card-link:hover {
    color: #45a6da;
    gap: 0.75rem;
}

.blog-card-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-link i {
    transform: translateX(3px);
}

@media (max-width: 991.98px) {
    .blog-page-section {
        padding: 4rem 1.5rem;
    }

    .blog-page-title {
        font-size: 2.25rem;
    }

    .blog-page-subtitle {
        font-size: 1rem;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .blog-card-image {
        height: 180px;
    }

    .blog-card-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 767.98px) {
    .blog-page-section {
        padding: 3rem 1rem;
    }

    .blog-header {
        margin-bottom: 2.5rem;
    }

    .blog-page-title {
        font-size: 1.85rem;
    }

    .blog-page-subtitle {
        font-size: 0.95rem;
    }

    .blog-page-subtitle br {
        display: none;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .blog-card-image {
        height: 200px;
    }

    .blog-card-content {
        padding: 1.25rem;
    }

    .blog-card-title {
        font-size: 1.15rem;
    }
}

@media (max-width: 575.98px) {
    .blog-page-section {
        padding: 2.5rem 1rem;
    }

    .blog-page-title {
        font-size: 1.6rem;
    }

    .blog-page-subtitle {
        font-size: 0.9rem;
    }

    .blog-card {
        border-radius: 16px;
    }

    .blog-card-image {
        height: 180px;
    }

    .blog-card-content {
        padding: 1rem;
    }

    .blog-card-meta {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .blog-card-title {
        font-size: 1.05rem;
    }

    .blog-card-excerpt {
        font-size: 0.85rem;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
}

.footer-developer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: absolute;
    left: 2rem;
    z-index: 10;
}

@media (max-width: 768px) {
    .footer-developer {
        position: static;
        order: -1;
    }

    .footer-copyright {
        font-size: 0.75rem;
    }
}

.developer-text {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 0.85rem;
    color: #508dca;
    opacity: 0.7;
}

.developer-logo-link {
    display: flex;
    align-items: center;
    transition: opacity 0.3s ease;
}

.developer-logo-link:hover {
    opacity: 0.8;
}

.developer-logo-link img {
    height: 85px;
    width: auto;
}