:root {
    --primary-color: #e30613;
    --text-main: #333333;
    --text-light: #666666;
    --bg-light: #ffffff;
    --bg-gray: #f8f9fa;
    --border-color: #dddddd;
    --transition: all 0.3s ease;
}

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

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

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

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

ul {
    list-style: none;
}

/* Header */
.header {
    background-color: var(--bg-light);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
    flex: 1;
    justify-content: center;
}

.nav-links a {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
    position: relative;
    padding: 5px 0;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links > *:not(:last-child) {
    position: relative;
}

.nav-links > *:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -13px;
    top: 50%;
    transform: translateY(-50%);
    height: 14px;
    width: 1px;
    background-color: var(--border-color);
}

.dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.dropbtn {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
    text-decoration: none;
    padding: 5px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffffff;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.1);
    z-index: 999;
    border-top: 3px solid var(--primary-color);
    padding: 10px 0;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: var(--text-main);
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    text-align: left;
    font-size: 14px;
    font-weight: 500;
}

.dropdown-content a::after {
    display: none !important; /* Hide separator in dropdown */
}

.dropdown-content a:hover {
    background-color: #f9f9f9;
    color: var(--primary-color);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cert-badge {
    background-color: var(--primary-color);
    color: white;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.1;
    width: 60px;
    position: relative;
}

.cert-badge .certified {
    background-color: #1b2651;
    width: 100%;
    position: absolute;
    bottom: -15px;
    left: 0;
    text-align: center;
    padding: 3px 0;
    font-size: 8px;
}
.cert-badge .certified::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px 5px 0;
    border-style: solid;
    border-color: #1b2651 transparent transparent transparent;
}

.search-btn {
    background: none;
    border: none;
    font-size: 18px;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
}

.search-btn:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding-left: 50px;
}

.hero-title {
    color: white;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    color: #eab676; /* similar to the orange in screenshot */
    font-size: 24px;
    font-weight: 600;
}

.hero-bottom-curve {
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1440 100" xmlns="http://www.w3.org/2000/svg"><path d="M0,50 C320,100 420,0 720,50 C1020,100 1120,0 1440,50 L1440,100 L0,100 Z" fill="white"/></svg>') no-repeat;
    background-size: cover;
    z-index: 4;
}

/* Awards & About Section */
.about {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.awards-banner {
    background: linear-gradient(135deg, #2a2a2a 0%, #111111 100%);
    border-radius: 4px;
    display: flex;
    align-items: center;
    padding: 40px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.awards-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" opacity="0.05"><circle cx="50" cy="50" r="2" fill="white"/></svg>');
    pointer-events: none;
}

.award-text-content {
    flex: 1;
    color: white;
    text-align: center;
    position: relative;
    z-index: 2;
}

.once-again-badge {
    position: absolute;
    top: -20px;
    left: 20%;
    background-color: var(--primary-color);
    color: white;
    font-weight: 800;
    font-size: 14px;
    padding: 15px;
    border-radius: 50%;
    transform: rotate(-15deg);
    border: 2px dashed rgba(255,255,255,0.5);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.award-text-content h3 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 10px;
}

.award-text-content h3 sup {
    font-size: 18px;
}

.award-text-content h4 {
    font-size: 24px;
    color: #eab676; /* gold/orange */
    margin-bottom: 15px;
}

.award-text-content p {
    font-size: 16px;
    line-height: 1.5;
    color: #cccccc;
}

.award-text-content strong {
    color: white;
}

.award-image-content {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.trophy-img {
    height: 300px;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
}

.about-text p {
    font-size: 14px;
    color: var(--text-main);
    margin-bottom: 20px;
    text-align: justify;
}

/* Products Section */
.products {
    padding: 60px 0;
    background-color: #fafafa;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 24px;
    font-weight: 500;
}

.section-header h2 span {
    color: var(--primary-color);
}

.section-header h2 span:nth-child(even) {
    color: var(--text-main);
}

.divider {
    height: 2px;
    width: 50px;
    background-color: var(--text-main);
    margin: 15px auto 0;
}

.product-carousel {
    display: flex;
    align-items: center;
    gap: 20px;
}

.carousel-btn {
    background-color: #f0f0f0;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 4px;
}

.carousel-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    flex: 1;
}

.product-card {
    background: white;
    padding: 20px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.product-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

.product-img-wrapper {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.product-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-card h3 {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-main);
    margin-top: auto;
}

/* Presence Section */
.presence {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.presence .section-header h2 {
    color: var(--primary-color);
}

.map-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.presence-map {
    width: 100%;
    height: auto;
}

/* Footer */
.footer {
    padding: 60px 0 20px;
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.footer-column h4 {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

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

.footer-column ul li a {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
}

.footer-column ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.footer-bottom-left, .footer-bottom-right {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.bottom-links {
    display: flex;
    gap: 20px;
}

.bottom-links a {
    font-size: 14px;
    font-weight: 600;
}

.handcrafted {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 600;
    letter-spacing: 1px;
}

.heart {
    color: var(--primary-color);
}

.flying-stars {
    color: var(--text-main);
}

.copyright {
    font-size: 11px;
    color: var(--text-light);
    max-width: 500px;
    text-align: right;
}

.social-icons {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: #333;
    color: white;
    border-radius: 50%;
    font-size: 16px;
}

.social-icons a:hover {
    background-color: var(--primary-color);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .awards-banner {
        flex-direction: column;
        text-align: center;
    }
    
    .once-again-badge {
        left: 0;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .copyright {
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links-grid {
        grid-template-columns: 1fr;
    }
}

/* Product Page specific styles */
.product-hero {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.product-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    z-index: 2;
}

.product-hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
}

.product-title {
    font-size: 48px;
    font-weight: 300;
    color: var(--text-main);
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.breadcrumb {
    padding: 15px 0;
    background-color: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
}

.breadcrumb a {
    color: var(--primary-color);
}

.breadcrumb .sep {
    margin: 0 10px;
    color: var(--text-light);
}

.product-layout {
    display: flex;
    margin-top: 40px;
    gap: 40px;
    padding-bottom: 60px;
}

.sidebar {
    width: 250px;
    flex-shrink: 0;
}

.sidebar-category {
    margin-bottom: 20px;
}

.sidebar-category h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-main);
}

.sidebar-category h3 a {
    color: inherit;
    text-decoration: none;
}
.sidebar-category h3 a:hover {
    color: var(--brand-red);
}

.sidebar-category.inactive h3 {
    color: var(--text-light);
    font-weight: 400;
}

.sidebar-category ul {
    border-left: 2px solid #e8e8e8;
    padding-left: 12px;
    margin-left: 2px;
    margin-bottom: 20px;
}

.sidebar-category ul li {
    margin-bottom: 10px;
}

.sidebar-category ul li a {
    font-size: 14px;
    color: var(--text-main);
}

.sidebar-category ul li a.active {
    color: var(--primary-color);
}

.product-main {
    flex: 1;
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.product-header h2 {
    font-size: 28px;
    font-weight: 500;
    color: var(--primary-color);
}

.contact-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    text-align: center;
    font-size: 12px;
}

.contact-btn strong {
    font-weight: 600;
}

.product-main p {
    font-size: 14px;
    margin-bottom: 15px;
    color: var(--text-main);
}

.construction-section {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.construction-section .text-content {
    flex: 1;
}

.construction-section h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-main);
}

.construction-section .image-content {
    width: 300px;
    background: #ffe5e5;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 4px;
    padding: 20px;
}

.construction-section .image-content img {
    max-width: 100%;
    height: auto;
}

.product-table-wrapper {
    margin-bottom: 30px;
}

.product-table-wrapper h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-main);
}

.product-table {
    width: 100%;
    border-collapse: collapse;
}

.product-table td {
    border: 1px solid var(--border-color);
    padding: 10px 15px;
    font-size: 13px;
}

.product-table tr td:first-child {
    font-weight: 600;
    width: 150px;
    background-color: #f9f9f9;
}

.disclaimer {
    font-size: 12px !important;
    font-style: italic;
    color: var(--text-light);
    margin-top: 20px;
}

.alternate-connection-wrapper {
    margin-top: 30px;
    margin-bottom: 15px;
}

.alternate-connection {
    display: inline-flex;
    flex-direction: column;
    position: relative;
}

.alternate-connection .badge {
    background-color: var(--primary-color);
    color: white;
    font-size: 10px;
    font-weight: bold;
    padding: 2px 10px;
    position: absolute;
    top: -10px;
    left: -10px;
    transform: rotate(-15deg);
}

.connection-box {
    border: 3px solid var(--primary-color);
    padding: 10px 30px;
    text-align: center;
}

.connection-box p {
    margin: 0;
    font-size: 12px;
    font-weight: 700;
}

.line-red-blue {
    height: 4px;
    background: linear-gradient(to right, var(--primary-color) 50%, #007bff 50%);
    margin-top: 5px;
}

.feature-note {
    font-size: 13px !important;
}

.cta-section {
    position: relative;
    padding: 80px 0;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 20, 40, 0.5);
    z-index: 2;
}

.cta-content-box {
    position: relative;
    z-index: 3;
    background: white;
    max-width: 600px;
    padding: 40px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cta-content-box h2 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 400;
}

.btn-outline-red {
    display: inline-block;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
}

.btn-outline-red:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Sub-menu styling for sidebar */
.sidebar-category .sub-menu {
    padding-left: 15px;
    margin-top: 5px;
    margin-bottom: 10px;
    list-style-type: none;
}
.sidebar-category .sub-menu li {
    margin-bottom: 8px;
}
.sidebar-category .sub-menu li a {
    font-size: 13px;
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 400;
}
.sidebar-category .sub-menu li a:hover {
    color: var(--brand-red);
}
.sidebar-category .sub-menu li a::before {
    content: "•";
    color: #ccc;
    display: inline-block;
    width: 10px;
    margin-left: -10px;
}

.sidebar-category.inactive ul {
    display: none;
}

/* Facilities Page Styles */
.facility-hero {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.facility-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.facility-hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    width: 100%;
    padding-left: 50px;
}

.facility-title {
    color: white;
    font-size: 36px;
    font-weight: 400;
    text-decoration: underline;
    text-underline-offset: 8px;
    text-decoration-thickness: 2px;
}

.facility-main {
    padding: 60px 0;
    background-color: #ffffff;
}

.facility-text-section {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px auto;
}

.facility-text-section p {
    color: var(--text-main);
    font-size: 14px;
    line-height: 1.6;
}

.section-header-red {
    text-align: center;
    margin-bottom: 20px;
}

.section-header-red h2 {
    color: #ff0000;
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 5px;
}

.divider-grey {
    height: 2px;
    width: 40px;
    background-color: #cccccc;
    margin: 0 auto;
}

.facility-gallery-section {
    margin-top: 40px;
}

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

.gallery-item {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    background-color: #f5f5f5;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 0, 0, 0.7);
    color: white;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 500;
}

/* About Us Pages Styles */
.about-hero-quote {
    color: var(--primary-color);
    font-size: 24px;
    font-style: italic;
    font-weight: 400;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
    line-height: 1.4;
}

.about-text-content {
    color: var(--text-main);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 60px;
    padding: 40px 0;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-icon {
    font-size: 40px;
    color: var(--text-main);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1;
}

.stat-text {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 500;
    line-height: 1.2;
    max-width: 100px;
}

/* Why Us Styles */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 60px;
}

.why-us-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: left;
}

.why-us-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}

.why-us-icon-wrapper i {
    font-size: 35px;
    color: var(--text-main);
}

.why-us-card h3 {
    color: var(--primary-color);
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 20px;
    text-align: center;
}

.why-us-card ul {
    list-style-type: disc;
    padding-left: 20px;
    color: var(--text-main);
    font-size: 14px;
    line-height: 1.6;
}

.why-us-card ul li {
    margin-bottom: 10px;
}

/* Culture Styles */
.culture-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.culture-item {
    text-align: left;
}

.culture-item .why-us-icon-wrapper {
    margin: 0 0 20px 0;
}

.culture-item h3 {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
}

.culture-item p {
    color: var(--text-main);
    font-size: 14px;
    line-height: 1.6;
}

/* Certifications Page Styles */
.certs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.cert-item {
    background-color: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 4px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 180px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cert-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.cert-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.offices-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.office-bottom-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.office-card {
    background: #ffffff;
    padding: 0;
}

.office-title {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-main);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.office-title i {
    color: var(--text-main);
    font-size: 24px;
}

.office-card p {
    font-size: 14px;
    color: var(--text-main);
    line-height: 1.6;
    margin-bottom: 15px;
}

.view-map {
    font-size: 14px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.contact-form-section {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.contact-form-section h3 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 30px;
    color: var(--text-main);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-family: inherit;
    font-size: 14px;
    color: var(--text-main);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-submit-row {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}
