.reach-us {
            padding: 60px 20px;
            background-color: #f8f9fa;
        }

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

        .reach-us .section-title h2 {
            font-size: 36px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 15px;
        }

        .reach-us .section-title p {
            font-size: 16px;
            color: #666;
        }

        .reach-us .contact-card {
            background: white;
            border-radius: 12px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }

        .reach-us .contact-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .reach-us .contact-card .icon {
            width: 60px;
            height: 60px;
            background-color: #2c5f6f;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }

        .reach-us .contact-card .icon svg {
            width: 30px;
            height: 30px;
            color: white;
        }

        .reach-us .contact-card h4 {
            font-size: 18px;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 15px;
        }

        .reach-us .contact-card p {
            font-size: 14px;
            color: #666;
            margin: 0;
        }

        .reach-us .form-section {
            margin-top: 60px;
        }

        .reach-us .form-title {
            font-size: 28px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 30px;
        }

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

        .reach-us .form-group input,
        .reach-us .form-group textarea {
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 14px;
            font-family: inherit;
        }

        .reach-us .form-group input:focus,
        .reach-us .form-group textarea:focus {
            outline: none;
            border-color: #2c5f6f;
            box-shadow: 0 0 0 3px rgba(44, 95, 111, 0.1);
        }

        .reach-us .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }

        .reach-us .submit-btn {
            background-color: #0d6efd;
            color: white;
            padding: 12px 40px;
            border: none;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .reach-us .submit-btn:hover {
            background-color: #0b5ed7;
        }

        .reach-us .map-container {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .reach-us .map-container iframe {
            width: 100%;
            height: 400px;
            border: none;
        }

        @media (max-width: 767px) {
            .reach-us {
                padding: 40px 15px;
            }

            .reach-us .section-title h2 {
                font-size: 28px;
            }

            .reach-us .contact-card {
                padding: 30px 20px;
                margin-bottom: 20px;
            }

            .reach-us .map-container iframe {
                height: 300px;
            }
        }