@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Manrope:wght@200..800&family=Roboto:ital,wght@0,100..900;1,100..900&family=Sansation:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Sofia+Sans+Condensed:ital,wght@0,1..1000;1,1..1000&display=swap');


@import 'silktide-consent-manager.css';
@import 'about.css';
@import 'blog.css';
@import 'contact.css';
@import 'message.css';
@import 'services.css';
@import 'contact.css';


@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Manrope:wght@200..800&family=Roboto:ital,wght@0,100..900;1,100..900&family=Sansation:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Sofia+Sans+Condensed:ital,wght@0,1..1000;1,1..1000&display=swap');

:root {
    --primary-color: #4a90e2;
    --secondary-color: #295F98;
    --third-color: #1c579c;
    --dark-blue: #0d2c4f;
    --text-color: #555;
    --heading-color: #222;
    --light-bg: #f9f9f9;
    --very-light-bg: #ffffff;
    --white: #ffffff;
    --border-color: #f3f3f3;
    --card-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    --button-shadow: 0 4px 10px rgba(74, 144, 226, 0.3);
    --menu-transition-speed: 0.6s;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    color: var(--text-color);
    line-height: 1.7;
    /*background-color: var(--very-light-bg);*/
    background-color: #f4f2f0;  /* fallback for old browsers */

    background: #F4F2F0;
background: radial-gradient(circle, rgba(244, 242, 240, 0.51) 0%, rgba(255, 254, 252, 1) 100%);

}

/* Prevent scrolling when mobile menu is open */
body.mobile-nav-active {
    overflow: hidden;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: var(--button-shadow);
}

.btn-primary:hover {
    background-color: #357abd;
    box-shadow: 0 6px 15px rgba(74, 144, 226, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: #357abd;
    transform: translateY(-2px);
}

.third-color {
    background-color: var(--third-color);
    color: var(--white);
}

.third-color:hover {
    background-color: #103765;
    transform: translateY(-2px);
}

.section-padding {
    padding: 80px 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

h1 {
    font-size: 2.8rem;
}

h2 {
    font-size: 2.2rem;
}

h3 {
    font-size: 1.6rem;
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

ul {
    list-style: none;
}

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

/* Header */
.main-header {
    background-color: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--heading-color);
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo img {
    max-height: 40px;
    margin-right: 10px;
}

.header-actions {
    display: flex;
    align-items: center;
}

/* Desktop Navigation - Default State */
.main-nav {
    display: flex;
    align-items: center;
    position: static;
    width: auto;
    height: auto;
    background-color: transparent;
    padding: 0;
    transform: none;
    z-index: auto;
    overflow-y: visible;
}

.main-nav ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 0;
    padding: 0;
    border: none;
}

.main-nav ul li {
    margin: 0 0 0 30px;
    width: auto;
}

.main-nav ul li a {
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    display: inline-block;
    justify-content: flex-start;
    padding: 5px 0;
    font-size: 1rem;
    border-bottom: none;
    width: auto;
}

.main-nav ul li a:hover, .main-nav ul li a.active {
    color: var(--primary-color);
}

.main-nav ul li a .arrow {
    display: none;
    margin-left: 5px;
    font-size: 0.8em;
}

.main-nav .mobile-menu-header {
    display: none;
}

.mobile-nav-close {
    display: none;
}

/* Header Button (Desktop) */
.header-book-btn {
    margin-left: 30px;
    display: inline-block;
}

/* Mobile Navigation Toggle Button */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--heading-color);
    cursor: pointer;
    padding: 5px;
    line-height: 1;
    margin-left: 15px;
}

/* --- Mobile Navigation Styles --- */
@media (max-width: 991px) {
    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--white);
        z-index: 1001;
        padding: 20px;
        display: flex;
        flex-direction: column;
        transform: translateX(-100%);
        transition: transform var(--menu-transition-speed) ease-in-out;
        overflow-y: auto;
    }

    body.mobile-nav-active .main-nav {
        transform: translateX(0%);
    }

    .main-nav .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 30px;
        padding-bottom: 15px;
        border-bottom: 1px solid var(--border-color);
    }

    .main-nav .mobile-menu-header .logo {
        font-size: 1.5rem;
    }

    .mobile-nav-close {
        display: block;
        background: none;
        border: none;
        font-size: 2rem;
        color: var(--heading-color);
        cursor: pointer;
        padding: 10px;
        line-height: 1;
    }

    .main-nav ul {
        display: flex;
        flex-direction: column;
        width: 100%;
        align-items: flex-start;
        margin: 0;
        padding: 0;
    }

    .main-nav ul li {
        margin: 0;
        width: 100%;
    }

    .main-nav ul li a {
        display: flex;
        justify-content: space-between;
        padding: 15px 10px;
        font-size: 1.2rem;
        border-bottom: 1px solid var(--border-color);
        width: 100%;
        color: var(--heading-color);
        font-weight: 500;
        line-height: 1.5;
    }

    .main-nav ul li:last-child a {
        border-bottom: none;
    }

    .main-nav ul li a .arrow {
        display: inline-block;
        color: var(--primary-color);
    }

    .main-header .container .main-nav > ul {
        /*    maybe need fix here*/
    }

    .mobile-nav-toggle {
        display: block;
    }

    .header-book-btn {
        font-size: 0.5em !important;
        padding: 1em !important;
    }

}

/* Hero Section */
.hero {
    text-align: left;
    border-radius: 25px;
    padding: 50px 0;
}

.hero h1 {
    max-width: 600px;
    margin-bottom: 20px;
}

.hero p {
    max-width: 550px;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.hero .btn {
    margin-right: 15px;
    margin-bottom: 10px;
}

.hero .learn-more {
    font-weight: 600;
    color: var(--heading-color);
    text-decoration: underline;
}

/* Trust Features */
.trust-features {
    padding: 30px 0;
    background-color: var(--white);
}

.trust-features .container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.trust-item {
    text-align: center;
    padding: 10px 15px;
    flex-basis: calc(50% - 15px);
}

.trust-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.trust-item span {
    display: block;
    font-weight: 500;
    color: var(--heading-color);
    font-size: 0.9rem;
}

/* About Section */
.about-section {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 50px;
}

.about-content {
    flex: 1;
    text-align: left;
}

.about-image {
    flex: 1;
}

.about-hero-img {
    width: 60%;
    border-radius: 25px;
    overflow: hidden;
    aspect-ratio: 12/8;
}

.about-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Stats Section */
.stats-section {
    text-align: center;
}

.stats-section h2 {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.stats-section p {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

.stats-counters {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.stat-item .number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.stat-item .label {
    font-weight: 500;
    color: var(--text-color);
}

/* Specialties Section */
.specialties-section {
    background-color: var(--white);
    text-align: left;
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.specialty-card {
    background-color: var(--very-light-bg);
    padding: 30px;
    border-radius: 8px;
    text-align: left;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 1px 1px 5px rgba(81, 81, 81, 0.1);
}

.specialty-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow);
}

.specialty-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: block;
}

.specialty-card h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

/* Process Section */
.process-steps {
    max-width: 700px;
    margin-top: 40px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    position: relative;
    padding-left: 50px;
}

.process-step .step-number {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.process-step .step-content h3 {
    margin-bottom: 5px;
    font-size: 1.3rem;
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--white);
    text-align: left;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background-color: var(--very-light-bg);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.testimonial-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 15px auto;
    object-fit: cover;
}

.testimonial-card h4 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.testimonial-card .title {
    display: block;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-color);
    text-align: left;
}

/* CTA Section */
.cta-section {
    background-color: var(--dark-blue);
    color: var(--white);
    text-align: center;
    padding: 60px 0 0 0;
}

.cta-section h2 {
    color: var(--white);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn {
    margin-top: 10px;
    margin-bottom: 40px;
}

.cta-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
    gap: 20px;
}

.cta-stat-item {
    text-align: center;
    flex-basis: calc(50% - 20px);
}

.cta-stat-item .number {
    font-size: 2rem;
    font-weight: 700;
    display: block;
}

.cta-stat-item .label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Blog Section */
.blog-section {
    text-align: center;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: left;
}

.blog-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease;
}

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

.blog-card-content {
    padding: 20px;
}

.blog-card-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.blog-card-content .meta {
    font-size: 0.9rem;
    color: var(--text-color);
    margin-bottom: 15px;
}

.blog-card-content .meta span {
    margin-right: 15px;
    display: inline-block;
    margin-bottom: 5px;
}

.blog-card-content .read-more {
    font-weight: 600;
}

/* FAQ Section */
.faq-section {
    background-color: var(--white);
}

.faq-container {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.faq-content {
    flex: 1.5;
}

.faq-image {
    flex: 1;
}

.faq-accordion .faq-item {
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
}

.faq-accordion .faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    font-weight: 600;
    color: var(--heading-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding-top: 10px;
    display: none;
}

.faq-question::after {
    content: '\f067';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-color);
    transition: transform 0.2s ease-in-out;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    display: block;
}

/* Footer */
.main-footer {
    background-color: var(--dark-blue);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 30px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-col p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--white);
    text-decoration: underline;
}

.footer-socials {
    margin-top: 15px;
}

.footer-socials a {
    display: inline-block;
    margin-right: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
}

.hero {
    margin: 0 auto;
    display: flex;
    width: 80%;
    gap: 2em;
}

.hero .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero .container h1 {
    font-size: 2em;
}

#hero-img {
    width: 60%;
    border-radius: 25px;
    overflow: hidden;
}

#hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#about > div > div.about-image {
    border-radius: 25px;
    overflow: hidden;
}

/* --- Consolidated Mobile Responsiveness --- */
@media (max-width: 991px) {
    .section-padding {
        padding: 60px 0;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.4rem;
    }

    .container {
        padding: 0 20px;
    }

    .about-section {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .about-image {
        margin-top: 0;
    }

    .faq-container {
        flex-direction: column;
        gap: 30px;
    }

    .faq-image {
        display: none;
    }
}

@media (max-width: 767px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }

    .hero {
        padding: 60px 0;
        text-align: left;
        width: 80%;
    }

    .hero h1 {
        max-width: 100%;
    }

    .hero p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        font-size: 1rem;
    }

    .hero .btn {
        margin-right: 5px;
    }

    .stats-counters {
        align-items: center;
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

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

    .cta-stats {
        flex-direction: column;
        gap: 15px;
    }

    .cta-stat-item {
        flex-basis: auto;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col {
        margin-bottom: 20px;
    }

    .footer-socials {
        text-align: center;
    }
}

@media (max-width: 575px) {

    .about-hero-img {
    width: 100% !important;
    border-radius: 25px;
    overflow: hidden;
}

    .section-padding {
        padding: 40px 0;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .container {
        padding: 0 15px;
    }

    .trust-features .container {
        /*flex-direction: column;*/
        justify-content: space-between;
        gap: 20px;
    }

    .trust-item {
        /*flex-basis: 100%;*/
        font-size: 0.5em;
        padding: 10px 0;
    }

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

    .specialty-card {
        padding: 20px;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-card {
        padding: 20px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .blog-card img {
        height: 180px;
        width: 100%;
        object-fit: fill;
    }

    .blog-card-content {
        padding: 15px;
    }

    .process-step {
        padding-left: 40px;
    }

    .process-step .step-number {
        font-size: 1.5rem;
    }

    .faq-content h2 {
        font-size: 1.6rem;
    }

    .cta-section h2 {
        font-size: 1.6rem;
    }

    .cta-stats {
        gap: 10px;
    }

    .cta-stat-item .number {
        font-size: 1.8rem;
    }

    .cta-stat-item .label {
        font-size: 0.8rem;
    }

    .footer-col h4 {
        font-size: 1rem;
    }

    .footer-bottom {
        font-size: 0.8rem;
    }

    .hero {
        padding: 30px 0 10px 0;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 2em;
    }

    .hero .container {
        order: 2;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: left;
        width: 100%;
    }

    .hero .container h1 {
        font-size: 1.5em;
        /*color: #292929;*/
        font-weight: bold;
    }

    #hero-img {
        width: 95%;
        margin: 0 auto;
        height: 15em;
        border-radius: 25px;
        overflow: hidden;
    }

    #hero-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    body > section.section-padding.blog-section > div > div > div:nth-child(3) > img {
        object-fit: contain;
    }
}


/* Gallery Section */
.gallery-ct {
    text-align: center;
    display: flex;
    gap: 1em;
    flex-wrap: wrap;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

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

.gallery-item img {
    width: 100%;
    max-width: 300px;
    border-radius: 25px;
    overflow: hidden;
    display: block;
    margin: 0 auto;
}

.gallery-caption {
    font-size: 0.9rem;
    color: var(--text-color);
    margin-top: 10px;
    line-height: 1.4;
}

/* Responsive adjustments for gallery */
@media (max-width: 575px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .gallery-item img {
        max-width: 100%;
    }

    .gallery-caption {
        font-size: 0.8rem;
    }
}


/* Swallow Icon */
.swallow-icon {
    padding: 0.2em;
    opacity: 0.8;
    aspect-ratio: 1/1;
    width: 75px;
    object-fit: cover;
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 1.5rem;
    color: var(--primary-color, #007bff);
    cursor: pointer;
    z-index: 2000;
    background-color: var(--white, #fff);
    border-radius: 50%;
    border: 1px solid #d6d6d6;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.swallow-icon:hover {
    transform: scale(1.1);
}

/* Modal */
.swallow-modal {
    display: none;
    position: fixed;
    bottom: 100px; /* Above icon */
    right: 20px;
    width: 25%; /* ~1/4 screen on large screens */
    max-width: 300px;
    background-color: var(--white, #fff);
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Strong shadow */
    z-index: 2001;
    padding: 20px;
    transform: scale(0); /* Start small for animation */
    transform-origin: bottom right; /* Appear from icon */
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.swallow-modal.active {
    display: block;
    transform: scale(1);
    opacity: 1;
}

.swallow-modal p {
    font-size: 0.9rem;
    color: var(--text-color, #333);
    margin-bottom: 15px;
    max-height: 130px; /* Limit text height */
    overflow-y: auto;
}

.swallow-modal .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--text-color, #333);
    cursor: pointer;
}

/* Responsive Modal */
@media (max-width: 767px) {
    .swallow-modal {
        width: 80%; /* Wider to fit text */
        max-width: none;
        right: 10px;
        bottom: 60px;
    }

    .swallow-icon {
        width: 50px;
    }
}

.rating-stars {
    color: #d1921d;
}


.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d2d2d;
    color: white;
    padding: 15px;
    text-align: center;
    font-size: 14px;
    z-index: 1000;
}

.cookie-banner button {
    margin-left: 10px;
    padding: 8px 16px;
    background-color: #ffffff;
    color: #2d2d2d;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}


#made-by {
    margin: 0 auto;
    width: 12em;
}

@media (max-width: 575px) {
    #made-by {
        width: 8em;
    }
}



.office-container {
    display: flex;
    align-items: center;
    gap: 30px;
    background-color: var(--very-light-bg);
    padding: 1.5em;
    margin-bottom: 20px;
    border-radius: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.office-graphic {
    flex: 0 0 40%;
    max-width: 400px;
}

.office-graphic img {
    width: 100%;
    height: auto;
    border-radius: 25px;
    display: block;
    border: 1px solid #c1c1c1;
}

.office-content {
    flex: 1;
}

.office-content span {
    font-size: 1em;
    font-weight: 500;
    color: #0d2b4c;
}

.office-content h3 {
    font-size: 1.6rem;
}

.office-content p {
    margin-bottom: 15px;
    line-height: 1.7;
}


@media (max-width: 780px) {
    .office-container {
        text-align: left;
    }
}

@media (max-width: 580px) {
    .office-container {
        flex-direction: column;
        align-items: start;
    }
}