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

body {
    font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #305B83;
    background: #f8f9fa;
}

.header-wrapper {
    position: relative;
    width: 100%;
    min-height: 70vh;
    overflow: hidden;
    background: url(/img/relation-client.jpg);
    color: #305B83;

}

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

.navbar {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0.5rem 1.5rem 1rem 1.5rem;
    background-color: transparent;
}

.navbar a {
    margin-top: 0;
}

.navbar img {
    height: 150px;
    width: auto;
    display: block;
}


.nav-container {
    display: flex;
    align-items: flex-start;
    margin-left: auto;
    padding-top: 0.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    text-decoration: none;
    color: white;
    font-size: 1rem;
    transition: color 0.3s;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.nav-menu li a:hover {
    color: #1487BE;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    margin-left: 2rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

.hero {
    position: relative;
    z-index: 1;
    color: white;
    padding: 6rem 2rem;
    text-align: center;
}

.hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero p {
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 2rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: #1487BE;
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 5px;
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background: #0f6a9a;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
}

/* Footer principal */
.esc-footer-main {
    background: linear-gradient(135deg, #1e1e1e 0%, #141414 100%);
    color: white;
    padding: 4rem 2rem 2rem;
    width: 100%;
}

.esc-footer-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.esc-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.esc-footer-column h3 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #1487BE;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.esc-footer-about {
    padding-right: 2rem;
}

.esc-footer-logo {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.esc-footer-logo span {
    color: #1487BE;
}

.esc-footer-description {
    color: #99A9B7;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.esc-social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.esc-social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(20, 135, 190, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1487BE;
    text-decoration: none;
    transition: all 0.3s ease;
}

.esc-social-link:hover {
    background: #1487BE;
    color: white;
    transform: translateY(-3px);
}

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

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

.esc-footer-links a {
    color: #99A9B7;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.esc-footer-links a:hover {
    color: #1487BE;
    padding-left: 5px;
}

.esc-footer-contact-info {
    color: #99A9B7;
    font-size: 0.9rem;
    line-height: 1.8;
}

.esc-footer-contact-info p {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.esc-footer-contact-info svg {
    flex-shrink: 0;
    margin-top: 2px;
}

/* Logo dans le footer contact */
.esc-footer-logo-box {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.esc-footer-logo-box .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.esc-footer-logo-box .logo-text span {
    color: #1487BE;
}

.logo-image {
    height: 200px;
    width: auto;
    display: block;
}

.esc-newsletter-box {
    background: rgba(20, 135, 190, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(20, 135, 190, 0.2);
}

.esc-newsletter-box h4 {
    color: white;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.esc-newsletter-box p {
    color: #99A9B7;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.esc-newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.esc-newsletter-input {
    flex: 1;
    padding: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border-radius: 6px;
    font-size: 0.9rem;
}

.esc-newsletter-input::placeholder {
    color: #99A9B7;
}

.esc-newsletter-btn {
    padding: 0.8rem 1.5rem;
    background: #1487BE;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.esc-newsletter-btn:hover {
    background: #0f6a9a;
}

.esc-partners-section {
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.esc-partners-title {
    text-align: center;
    color: #99A9B7;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.esc-partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    align-items: center;
    justify-items: center;
}

.esc-partner-logo {
    opacity: 0.5;
    transition: opacity 0.3s ease;
    filter: grayscale(100%) brightness(2);
    font-weight: 600;
    font-size: 1.2rem;
    color: white;
}

.esc-partner-logo:hover {
    opacity: 1;
}

.esc-footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.esc-footer-copyright {
    color: #99A9B7;
    font-size: 0.9rem;
}

.esc-footer-legal-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.esc-footer-legal-links a {
    color: #99A9B7;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.esc-footer-legal-links a:hover {
    color: #1487BE;
}

@media (max-width: 1024px) {
    .esc-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .esc-footer-about {
        grid-column: 1 / -1;
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .esc-pre-footer-cta h2 {
        font-size: 1.8rem;
    }

    .esc-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .esc-btn-cta {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .esc-footer-grid {
        grid-template-columns: 1fr;
    }

    .esc-footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .esc-footer-legal-links {
        justify-content: center;
    }

    .esc-partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* CSS POUR LES COMPOSANTS CARD */

.agencies-intro {
    text-align: center;
    padding: 5rem 2rem;
    background:
        linear-gradient(135deg, rgba(48, 91, 131, 0.95) 0%, rgba(20, 135, 190, 0.9) 100%),
        url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1920&h=600&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    position: relative;
    overflow: hidden;
}

.agencies-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="dots" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="1.5" fill="rgba(255,255,255,0.15)"/></pattern></defs><rect width="60" height="60" fill="url(%23dots)"/></svg>');
    opacity: 0.4;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(30px);
}

.intro-content.animate {
    animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.agencies-intro h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.agencies-intro p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

/* Container principal pour les agences */
.agencies-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section agence */
.agency-section {
    margin: 4rem 0;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.agency-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.agency-wrapper {
    display: grid;
    grid-template-columns: 45% 55%;
    min-height: 550px;
    align-items: stretch;
}

/* Image side */
.agency-image-side {
    position: relative;
    overflow: hidden;
    background: #305B83;
}

.agency-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0.9;
}

.agency-section:hover .agency-image-side img {
    transform: scale(1.08);
    opacity: 1;
}

.location-tag {
    position: absolute;
    top: 2rem;
    left: 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.7rem 1.3rem;
    border-radius: 50px;
    font-weight: 600;
    color: #305B83;
    font-size: 0.9rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
    transform: translateX(-100px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.agency-section.visible .location-tag {
    transform: translateX(0);
    opacity: 1;
    transition-delay: 0.3s;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(48, 91, 131, 0.3), rgba(20, 135, 190, 0.2));
    pointer-events: none;
}

/* Content side */
.agency-content-side {
    padding: 3.5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
}

.agency-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(20, 135, 190, 0.1), rgba(48, 91, 131, 0.05));
    color: #1487BE;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    width: fit-content;
}

.agency-content-side h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    color: #305B83;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.agency-subtitle {
    font-size: 1.1rem;
    color: #1487BE;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.agency-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 2rem;
}

.specialties-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.specialty-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 0.8rem;
    background: rgba(20, 135, 190, 0.04);
    border-radius: 10px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-20px);
}

.agency-section.visible .specialty-item {
    animation: slideInRight 0.5s ease forwards;
}

.agency-section.visible .specialty-item:nth-child(1) {
    animation-delay: 0.5s;
}

.agency-section.visible .specialty-item:nth-child(2) {
    animation-delay: 0.6s;
}

.agency-section.visible .specialty-item:nth-child(3) {
    animation-delay: 0.7s;
}

.agency-section.visible .specialty-item:nth-child(4) {
    animation-delay: 0.8s;
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.specialty-item:hover {
    background: rgba(20, 135, 190, 0.08);
    transform: translateX(5px);
}

.specialty-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #1487BE, #305B83);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    flex-shrink: 0;
    font-size: 0.85rem;
}

.specialty-text {
    font-size: 0.95rem;
    color: #305B83;
    font-weight: 500;
    line-height: 1.4;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(48, 91, 131, 0.03), rgba(20, 135, 190, 0.02));
    border-radius: 12px;
    border-left: 4px solid #1487BE;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    color: #5a6c7d;
}

.contact-item svg {
    color: #1487BE;
    flex-shrink: 0;
}

.contact-item a {
    color: #5a6c7d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #1487BE;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #1487BE, #0f6a9a);
    color: white;
    padding: 1rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 15px rgba(20, 135, 190, 0.3);
    width: fit-content;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(20, 135, 190, 0.4);
}

.cta-button svg {
    transition: transform 0.3s ease;
}

.cta-button:hover svg {
    transform: translateX(5px);
}

/* Version inversée pour la 2ème agence */
.agency-section.reverse .agency-wrapper {
    grid-template-columns: 55% 45%;
}

.agency-section.reverse .agency-image-side {
    order: 2;
}

.agency-section.reverse .agency-content-side {
    order: 1;
}

.agency-section.reverse .location-tag {
    left: auto;
    right: 2rem;
    transform: translateX(100px);
}

.agency-section.reverse.visible .location-tag {
    transform: translateX(0);
}

/* Agence 2 - couleurs différentes */
.agency-france .agency-badge {
    background: linear-gradient(135deg, rgba(48, 91, 131, 0.1), rgba(20, 135, 190, 0.05));
    color: #305B83;
}

.agency-france .specialty-icon {
    background: linear-gradient(135deg, #305B83, #1e3a52);
}

.agency-france .contact-details {
    border-left-color: #305B83;
}

.agency-france .cta-button {
    background: linear-gradient(135deg, #305B83, #1e3a52);
}

/* Responsive */
@media (max-width: 1024px) {

    .agency-wrapper,
    .agency-section.reverse .agency-wrapper {
        grid-template-columns: 1fr !important;
    }

    .agency-image-side {
        min-height: 350px;
        order: 1 !important;
    }

    .agency-content-side {
        order: 2 !important;
        padding: 2.5rem 2rem;
    }

    .specialties-grid {
        grid-template-columns: 1fr;
    }

    .agencies-intro h2 {
        font-size: 2rem;
    }

    .agency-content-side h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 640px) {
    .agencies-intro {
        padding: 3rem 1.5rem;
    }

    .agencies-intro h2 {
        font-size: 1.6rem;
    }

    .agencies-intro p {
        font-size: 1rem;
    }

    .agency-content-side {
        padding: 2rem 1.5rem;
    }

    .contact-details {
        padding: 1rem;
    }
}

@media screen and (max-width: 1024px) {
    .container {
        padding: 60px 30px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .service-block {
        gap: 30px;
    }
}

@media screen and (max-width: 768px) {

    .navbar {
        padding: 10px 15px;
        align-items: center;
    }

    .navbar img {
        height: 80px;
        width: auto;
    }

    .nav-container {
        position: relative;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 4px;
        cursor: pointer;
        z-index: 1001;
    }

    .hamburger span {
        width: 25px;
        height: 3px;
        background: white;
        transition: 0.3s;
        display: block;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: left 0.3s ease;
        padding: 100px 20px 40px;
        z-index: 1000;
        justify-content: flex-start;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 20px 0;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-menu.active li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-menu.active li:nth-child(2) {
        transition-delay: 0.2s;
    }

    .nav-menu.active li:nth-child(3) {
        transition-delay: 0.3s;
    }

    .nav-menu.active li:nth-child(4) {
        transition-delay: 0.4s;
    }

    .nav-menu.active li:nth-child(5) {
        transition-delay: 0.5s;
    }

    .nav-menu li a {
        color: #305B83;
        font-size: 1.2rem;
        font-weight: 600;
        text-shadow: none;
        display: block;
        padding: 15px 20px;
    }

    .header-wrapper {
        min-height: 60vh;
    }

    .hero {
        padding: 60px 20px 40px;
        min-height: auto;
    }

    .hero h1 {
        font-size: 1.6rem;
        line-height: 1.3;
        margin-bottom: 20px;
        padding: 0 5px;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .btn-primary {
        padding: 14px 24px;
        font-size: 0.9rem;
        display: inline-block;
        width: auto;
        max-width: 90%;
        text-align: center;
    }

    .container {
        padding: 50px 20px;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
        padding: 0 10px;
    }

    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 40px;
        padding: 0 15px;
        line-height: 1.6;
    }

    .service-block {
        flex-direction: column;
        gap: 25px;
        margin-bottom: 50px;
    }

    .service-block:nth-child(even) {
        flex-direction: column;
    }

    .service-content,
    .service-image {
        width: 100%;
        padding: 0;
    }

    .service-content {
        padding: 0 10px;
    }

    .service-number {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }

    .service-content h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
        line-height: 1.3;
    }

    .service-content p {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 15px;
    }

    .service-image img {
        height: 250px;
        border-radius: 8px;
    }

    .about-section {
        padding: 50px 20px;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0;
    }

    .card {
        margin-bottom: 0;
    }

    .card-content {
        padding: 1.5rem;
    }

    .card h3 {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }

    .card p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .team-section {
        padding: 50px 20px;
    }

    .section-header {
        margin-bottom: 30px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 30px;
    }

    .team-card {
        padding: 2rem 1.5rem;
    }

    .member-name {
        font-size: 1.3rem;
    }

    .member-role {
        font-size: 0.85rem;
    }

    .member-description {
        font-size: 0.9rem;
    }

    .skill-tag {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .esc-footer-main {
        padding: 40px 20px 20px;
    }

    .esc-footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 30px;
    }

    .esc-footer-about {
        padding-right: 0;
        grid-column: 1;
    }

    .esc-footer-logo {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }

    .esc-footer-description {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .esc-newsletter-box {
        padding: 1.2rem;
        margin-top: 20px;
    }

    .esc-newsletter-box h4 {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }

    .esc-newsletter-box p {
        font-size: 0.8rem;
        margin-bottom: 12px;
    }

    .esc-newsletter-form {
        flex-direction: column;
        gap: 10px;
    }

    .esc-newsletter-input {
        width: 100%;
        padding: 12px;
        font-size: 0.9rem;
    }

    .esc-newsletter-btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .esc-footer-column h3 {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .esc-footer-links li {
        margin-bottom: 10px;
    }

    .esc-footer-links a {
        font-size: 0.9rem;
    }

    .esc-footer-contact-info {
        font-size: 0.85rem;
    }

    .esc-footer-contact-info p {
        margin-bottom: 12px;
        flex-wrap: wrap;
    }

    .esc-footer-contact-info span {
        word-break: break-word;
    }

    .logo-image {
        height: 120px;
        max-width: 100%;
    }

    .esc-partners-section {
        margin: 30px 0;
        padding: 25px 0;
    }

    .esc-partners-title {
        font-size: 0.8rem;
        margin-bottom: 20px;
        padding: 0 10px;
    }

    .esc-partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 10px;
    }

    .esc-partner-logo {
        font-size: 0.9rem;
        padding: 10px 5px;
        text-align: center;
    }

    .esc-footer-bottom {
        padding-top: 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .esc-footer-copyright {
        font-size: 0.85rem;
    }

    .esc-footer-legal-links {
        flex-direction: column;
        gap: 10px;
    }

    .esc-footer-legal-links a {
        font-size: 0.85rem;
    }
}

@media screen and (max-width: 480px) {

    .navbar img {
        height: 70px;
    }

    .hero h1 {
        font-size: 1.4rem;
        line-height: 1.25;
    }

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

    .section-title {
        font-size: 1.6rem;
    }

    .service-content h3 {
        font-size: 1.3rem;
    }

    .service-content p {
        font-size: 0.9rem;
    }

    .service-image img {
        height: 220px;
    }

    .card h3 {
        font-size: 1.2rem;
    }

    .member-avatar {
        width: 80px;
        height: 80px;
        font-size: 28px;
    }

    .member-name {
        font-size: 1.2rem;
    }

    .esc-partners-grid {
        grid-template-columns: 1fr;
    }

    .esc-partner-logo {
        font-size: 1rem;
    }
}

@media screen and (max-width: 768px) {
    html {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }

    body {
        overflow-x: hidden;
    }

    * {
        max-width: 100%;
    }

    img {
        max-width: 100%;
        height: auto;
    }
}

@media screen and (max-width: 768px) and (orientation: landscape) {
    .header-wrapper {
        min-height: 100vh;
    }

    .hero {
        padding: 40px 20px 30px;
    }

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

    .nav-menu {
        padding: 80px 20px 30px;
    }
}


.translate-buttons {
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 1000;
    background: white;
    padding: 4px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.translate-btn {
    background: white;
    color: #1e3a5f;
    border: 2px solid #e8edf2;
    padding: 6px 14px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 4px;
}

.translate-btn:hover {
    border-color: #1e3a5f;
    background: #f8f9fa;
}

.translate-btn.active {
    background: #1e3a5f;
    color: white;
    border-color: #1e3a5f;
}

.flag {
    font-size: 14px;
}

#google_translate_element {
    display: none;
}

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