:root {
    --primary: #dd6808;
    --primary-dark: #737373;
    --secondary: #d4a762;
    --accent: #4caf50;
    --light: #f8f9fa;
    --dark: #333;
    --gray: #666;
    --light-gray: #e9ecef;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.8rem;
}

h2 {
    font-size: 2.2rem;
    position: relative;
    padding-bottom: 0.8rem;
}

h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 4px;
    background: var(--secondary);
}

.section-title-center h2:after {
    left: 50%;
    transform: translateX(-50%);
}

p {
    margin-bottom: 1.2rem;
    color: var(--gray);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

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

section {
    padding: 80px 0;
}

.btn {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}

.btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

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

.btn-secondary:hover {
    background: #c0954f;
}

.btn-accent {
    background: var(--accent);
}

.btn-accent:hover {
    background: #3d8c40;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: var(--shadow);
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 10px 0;
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}

.logo span {
    color: var(--secondary);
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-menu li {
    margin-left: 2rem;
}

.nav-menu a {
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.nav-menu a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
}

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

.nav-menu .btn {
    margin-left: 1rem;
    padding: 10px 24px;
    font-size: 0.9rem;
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--primary);
}

/* Header */
.header {
    padding-top: 140px;
    padding-bottom: 80px;
    background: var(--light);
    overflow: hidden;
    position: relative;
}

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

.header-content {
    flex: 1;
    min-width: 300px;
    padding-right: 30px;
}

.header-image {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.header-image img {
    border-radius: 20px;
    box-shadow: var(--shadow);
    transform: perspective(1000px) rotateY(-10deg);
    transition: var(--transition);
}

.header-image:hover img {
    transform: perspective(1000px) rotateY(0deg);
}

.header-badges {
    display: flex;
    margin-top: 40px;
}

.badge {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.badge:hover {
    transform: translateY(-10px);
}

.badge i {
    font-size: 1.8rem;
    color: var(--primary);
}

/* Modern Hero */
.hero-modern {
    background: linear-gradient(165deg, #fafbfc 0%, #f0f4f8 45%, #f8f9fa 100%);
    padding-top: 140px;
    padding-bottom: 100px;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.5;
}

.hero-shape-1 {
    width: 420px;
    height: 420px;
    background: linear-gradient(135deg, rgba(221, 104, 8, 0.06) 0%, rgba(212, 167, 98, 0.04) 100%);
    top: -120px;
    right: -80px;
}

.hero-shape-2 {
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.08) 0%, rgba(76, 175, 80, 0.02) 100%);
    bottom: -60px;
    left: -60px;
}

.hero-modern .header-container {
    position: relative;
    z-index: 1;
    align-items: center;
    gap: 2rem;
}

.hero-modern .header-content {
    padding-right: 40px;
    max-width: 560px;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(221, 104, 8, 0.12);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 1.25rem;
}

.hero-title {
    font-size: clamp(2rem, 4.2vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 1.25rem;
}

.hero-title-line {
    display: block;
}

.hero-title-accent {
    background: linear-gradient(120deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.1rem;
    line-height: 1.65;
    color: var(--gray);
    margin-bottom: 1.75rem;
    max-width: 480px;
}

.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 2rem;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--accent) 0%, #3d8c40 100%);
    color: #fff;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.05rem;
    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.35);
    transition: var(--transition);
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(76, 175, 80, 0.4);
}

.btn-hero-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-hero-outline:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

.btn-hero-outline i {
    margin-right: 8px;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--dark);
}

.hero-trust-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
    transition: var(--transition);
}

.hero-trust-item:hover .hero-trust-icon {
    background: var(--primary);
    color: #fff;
    transform: scale(1.05);
}

.hero-image-wrap {
    max-width: 520px;
    margin-left: auto;
}

.hero-image-frame {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}

.hero-image-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 4px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.hero-image-wrap:hover .hero-image-frame {
    transform: translateY(-6px);
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.14);
}

.hero-image-frame img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
    transform: none;
}

.hero-image-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: #fff;
    padding: 12px 20px;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    font-size: 0.9rem;
    color: var(--dark);
}

.hero-image-badge strong {
    display: block;
    font-size: 1.5rem;
    color: var(--primary);
    line-height: 1.2;
}

/* Hero Premium - Full-bleed image + floating card */
.hero-premium {
    padding-top: 140px;
    padding-bottom: 100px;
    min-height: 580px;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.hero-premium-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-premium-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.hero-premium-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(26, 35, 48, 0.88) 0%, rgba(26, 35, 48, 0.75) 45%, rgba(26, 35, 48, 0.4) 100%);
    z-index: 1;
}

.hero-premium-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-premium-card {
    max-width: 560px;
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem 2.25rem;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.hero-premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--gray);
    margin-bottom: 1rem;
}

.hero-premium-badge i {
    color: var(--primary);
    font-size: 0.9rem;
}

.hero-premium-badge strong {
    color: var(--primary);
}

.hero-premium-title {
    font-size: clamp(1.85rem, 3.6vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 1rem;
}

.hero-premium-accent {
    display: block;
    color: var(--primary);
    margin-top: 0.2em;
}

.hero-premium-desc {
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.hero-premium-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hero-premium-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--accent) 0%, #3d8c40 100%);
    color: #fff;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
    transition: var(--transition);
}

.hero-premium-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(76, 175, 80, 0.45);
}

.hero-premium-call {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
    transition: var(--transition);
}

.hero-premium-call:hover {
    color: #c45a06;
}

.hero-premium-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.hero-premium-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray);
}

.hero-premium-trust-item i {
    color: var(--primary);
    font-size: 0.95rem;
}

@media (max-width: 992px) {
    .hero-premium {
        padding-top: 120px;
        padding-bottom: 80px;
        min-height: auto;
    }

    .hero-premium-card {
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
    }

    .hero-premium-badge {
        justify-content: center;
    }

    .hero-premium-actions {
        justify-content: center;
    }

    .hero-premium-trust {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-premium {
        padding-top: 110px;
        padding-bottom: 60px;
    }

    .hero-premium-card {
        padding: 1.75rem 1.5rem;
    }

    .hero-premium-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-premium-cta {
        justify-content: center;
    }
}

/* Why Choose Us */
.why-choose-us {
    background: white;
}

.section-title-center {
    text-align: center;
    margin-bottom: 50px;
}

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

.feature {
    display: flex;
    align-items: flex-start;
    padding: 25px;
    background: var(--light);
    border-radius: 10px;
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.5rem;
}

.feature-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

/* Services */
.services {
    background: var(--light);
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.services-content {
    flex: 1;
    min-width: 300px;
}

.services-list {
    flex: 1;
    min-width: 300px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.service-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: white;
    border-radius: 10px;
    transition: var(--transition);
}

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

.service-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--primary);
    font-size: 1.2rem;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
    padding: 70px 20px;
}

.cta-banner h2 {
    color: white;
    margin-bottom: 20px;
}

.cta-banner h2:after {
    background: var(--secondary);
    left: 50%;
    transform: translateX(-50%);
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto 30px;
}

.cta-banner .btn {
    background: var(--secondary);
    color: var(--dark);
    font-size: 1.1rem;
    padding: 16px 40px;
}

/* Service Areas */
.service-areas {
    background: white;
}

.areas-container {
    max-width: 1000px;
    margin: 0 auto;
}

.areas-description {
    text-align: center;
    margin-bottom: 40px;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.area-item {
    padding: 12px 15px;
    background: var(--light);
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
}

.area-item:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-5px);
}

.area-item.main-area {
    background: var(--primary);
    color: white;
    font-weight: 600;
}

/* FAQ */
.faq {
    background: var(--light);
}

.faq-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.faq-column {
    flex: 1;
    min-width: 300px;
}

.faq-item {
    margin-bottom: 20px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

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

.faq-question:hover {
    background: rgba(0, 0, 0, 0.02);
}

.faq-question i {
    color: var(--primary);
    transition: var(--transition);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 500px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Additional Services */
.additional-services {
    background: white;
}

.services-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    background: var(--light);
    border-radius: 15px;
    padding: 30px;
    transition: var(--transition);
}

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

.service-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
}

.service-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-top: 30px;
}

/* Contact */
.contact {
    background: var(--light);
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info.contact-info-center {
    max-width: 700px;
    margin: 0 auto 30px;
    text-align: center;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(42, 92, 139, 0.1);
}

.map-container {
    margin-top: 40px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-container.map-full {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.map-placeholder {
    height: 300px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

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

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h3 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.3rem;
}

.footer-col h3:after {
    background: var(--secondary);
}

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

.footer-links a {
    transition: var(--transition);
    color: rgba(255, 255, 255, 0.8);
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--secondary);
    color: var(--dark);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (max-width: 992px) {
    h1 {
        font-size: 2.4rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        flex-direction: column;
        background: white;
        width: 80%;
        max-width: 400px;
        height: calc(100vh - 70px);
        padding: 40px 20px;
        transition: var(--transition);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

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

    .nav-menu li {
        margin: 0 0 25px 0;
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 10px 0;
        font-size: 1.1rem;
    }

    .nav-menu .btn {
        margin: 20px 0 0 0;
        width: 100%;
    }

    .hamburger {
        display: block;
    }

    .header-content {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
        max-width: 100%;
    }

    .header-badges {
        justify-content: center;
    }

    .hero-modern .header-content {
        text-align: center;
        padding-right: 0;
    }

    .hero-eyebrow {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta-row {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-image-wrap {
        margin-left: auto;
        margin-right: auto;
    }

    .services-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    .header {
        padding-top: 120px;
        padding-bottom: 60px;
    }

    .hero-modern {
        padding-top: 120px;
        padding-bottom: 70px;
    }

    .hero-cta-row {
        flex-direction: column;
        align-items: center;
    }

    .btn-hero-outline,
    .btn-hero-primary {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }

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

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

    .services-cards {
        grid-template-columns: 1fr;
    }
}

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

    h2 {
        font-size: 1.6rem;
    }

    .btn {
        padding: 12px 24px;
    }

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


.contact {
    padding: 80px 0;
    background-color: #f9f9f9;
    color: #333;
    font-family: 'Poppins', sans-serif;
}

.section-title-center {
    text-align: center;
    margin-bottom: 50px;
}

.section-title-center h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #2a5c8b;
}

.section-title-center p {
    font-size: 1.1rem;
    color: #555;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: flex-start;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    text-align: left;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 25px;
}

.contact-icon {
    font-size: 2rem;
    color: #2a5c8b;
    margin-right: 15px;
}

.contact-text h4 {
    margin: 0 0 5px 0;
    font-size: 1.2rem;
    color: #222;
}

.contact-text p {
    margin: 0;
    color: #555;
}

.contact-text a {
    color: #2a5c8b;
    text-decoration: none;
}

.contact-text a:hover {
    text-decoration: underline;
}

.contact-map {
    flex: 1;
    min-width: 300px;
}
