* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: #ffffff;
            color: #1e2a3e;
            line-height: 1.5;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 32px;
        }

        /* Header */
        .page-header {
            background: linear-gradient(135deg, #0a2b3e 0%, #1e4a6b 100%);
            color: white;
            padding: 80px 0 60px;
            text-align: center;
        }

        .page-header h1 {
            font-size: 3rem;
            margin-bottom: 16px;
        }

        .page-header p {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Back Link */
        .back-link {
            display: inline-block;
            margin: 32px 0 24px;
            color: #c47b2e;
            text-decoration: none;
            font-weight: 500;
        }

        .back-link:hover {
            text-decoration: underline;
        }

        /* Contact Layout */
        .contact-layout {
            display: flex;
            flex-wrap: wrap;
            gap: 48px;
            margin: 40px 0 80px;
        }

        /* Left Sidebar - Contact Info */
        .contact-info-sidebar {
            flex: 1;
            min-width: 320px;
        }

        /* Right Column - Form + Map */
        .right-column {
            flex: 2;
            min-width: 320px;
            display: flex;
            flex-direction: column;
            gap: 32px;
        }

        .info-card {
            background: #f8fafc;
            border-radius: 28px;
            padding: 32px;
            margin-bottom: 32px;
        }

        .info-card h3 {
            font-size: 1.3rem;
            margin-bottom: 24px;
            padding-bottom: 12px;
            border-bottom: 2px solid #c47b2e;
            display: inline-block;
        }

        .contact-detail {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 24px;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }

        .contact-icon i {
            font-size: 1.3rem;
            color: #c47b2e;
        }

        .contact-text h4 {
            font-size: 0.85rem;
            color: #6c7a89;
            margin-bottom: 4px;
        }

        .contact-text p {
            font-weight: 500;
            color: #1e2a3e;
        }

        /* Office Locations */
        .office-card {
            background: white;
            border: 1px solid #eef2f8;
            border-radius: 20px;
            padding: 20px;
            margin-bottom: 16px;
            transition: all 0.2s;
        }

        .office-card:hover {
            transform: translateX(4px);
            border-color: #c47b2e30;
        }

        .office-card h4 {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 8px;
            color: #c47b2e;
        }

        .office-card p {
            font-size: 0.9rem;
            color: #4a5b6b;
            margin-left: 28px;
        }

        /* Business Hours */
        .hours-item {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid #eef2f8;
        }

        .hours-item:last-child {
            border-bottom: none;
        }

        .hours-day {
            font-weight: 500;
        }

        .hours-time {
            color: #4a5b6b;
        }

        /* Contact Form */
        .contact-form-main {
            background: white;
            border-radius: 32px;
            padding: 40px;
            box-shadow: 0 20px 35px -12px rgba(0,0,0,0.08);
            border: 1px solid #eef2f8;
        }

        .contact-form-main h2 {
            font-size: 1.8rem;
            margin-bottom: 8px;
        }

        .contact-form-main > p {
            color: #6c7a89;
            margin-bottom: 32px;
        }

        .form-group {
            margin-bottom: 24px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        input, select, textarea {
            width: 100%;
            padding: 14px 18px;
            border: 1px solid #e2e8f0;
            border-radius: 16px;
            font-family: inherit;
            font-size: 1rem;
            transition: 0.2s;
        }

        input:focus, select:focus, textarea:focus {
            outline: none;
            border-color: #c47b2e;
            box-shadow: 0 0 0 3px rgba(196,123,46,0.1);
        }

        .btn-submit {
            width: 100%;
            background: #c47b2e;
            color: white;
            padding: 14px;
            border: none;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
        }

        .btn-submit:hover {
            background: #a5631f;
            transform: translateY(-2px);
        }

        .form-message {
            margin-top: 20px;
            padding: 14px;
            border-radius: 16px;
            display: none;
            text-align: center;
        }

        .form-message.success {
            background: #e6f7e6;
            color: #2e7d32;
            display: block;
        }

        .form-message.error {
            background: #fee;
            color: #c62828;
            display: block;
        }

        /* Map Container */
        .map-card {
            background: white;
            border-radius: 32px;
            padding: 0;
            overflow: hidden;
            box-shadow: 0 20px 35px -12px rgba(0,0,0,0.08);
            border: 1px solid #eef2f8;
        }

        .map-container {
            width: 100%;
            height: 320px;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
            display: block;
        }

        /* CTA Section */
        .cta-section {
            text-align: center;
            padding: 60px;
            background: linear-gradient(135deg, #0a2b3e 0%, #1e4a6b 100%);
            border-radius: 32px;
            margin: 40px 0 60px;
            color: white;
        }

        .cta-section h2 {
            font-size: 1.8rem;
            margin-bottom: 16px;
        }

        .cta-section p {
            margin-bottom: 24px;
            opacity: 0.9;
        }

        .cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #c47b2e;
            color: white;
            padding: 12px 32px;
            border-radius: 40px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.2s;
        }

        .cta-btn:hover {
            background: #a5631f;
            transform: translateY(-2px);
        }

        /* Footer */
        footer {
            background: #0a2b3e;
            color: #cddfea;
            padding: 48px 0 24px;
        }

        .footer-content {
            text-align: center;
        }

        .footer-content a {
            color: #c47b2e;
            text-decoration: none;
        }

        .copyright {
            text-align: center;
            padding-top: 32px;
            margin-top: 32px;
            border-top: 1px solid #255f7a;
            font-size: 0.85rem;
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 24px;
            }
            .page-header {
                padding: 60px 0 40px;
            }
            .page-header h1 {
                font-size: 2rem;
            }
            .form-row {
                grid-template-columns: 1fr;
            }
            .contact-form-main {
                padding: 28px;
            }
            .cta-section {
                padding: 40px 24px;
            }
            .contact-layout {
                flex-direction: column;
            }
            .right-column {
                order: 2;
            }
            .contact-info-sidebar {
                order: 1;
            }
        }