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

    body {

    font-family: "Spartan", Sans-serif;
            color: #716147;
        line-height: 1.6;
    }

    /* Hero Section */
    .hero-section {
        background: linear-gradient(rgba(191, 98, 76, 0.9), rgba(191, 98, 76, 0.9)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><rect fill="%23BF624C" width="1200" height="400"/></svg>');
        background-size: cover;
        background-position: center;
        padding: 100px 20px;
        text-align: center;
        color: white;
    }

    .hero-section .subtitle {
        font-size: 14px;
        letter-spacing: 2px;
        margin-bottom: 15px;
        text-transform: uppercase;
        font-weight: 500;
    }

    .hero-section h1 {
        font-size: 48px;
        font-weight: 700;
        letter-spacing: 1px;
    }

    /* Contact Info Section */
        .contact-info-section {
            background: #f9f7f4;
            padding: 80px 20px;
        }

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

        .section-header {
            margin-bottom: 50px;
        }

        .section-subtitle {
            color: #BF624C;
            font-size: 14px;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .section-title {
            font-size: 42px;
            color: #514633;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .section-description {
            font-size: 16px;
            color: #716147;
            max-width: 600px;
            line-height: 1.8;
        }

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

    .info-card {
        display: flex;
        gap: 20px;
        align-items: flex-start;
    }

    /* EXACT Bootstrap Icons - No circle */
    .info-card-icon {
        font-size: 32px;
        color: #BF624C;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .info-card-content h3 {
        font-size: 16px;
        color: #514633;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 10px;
        letter-spacing: 1px;
    }

    .info-card-content p {
        font-size: 15px;
        color: #716147;
        line-height: 1.6;
    }

    /* Map Section */
    .map-section {
        width: 100%;
        height: 500px;
        border: none;
    }

    .map-section iframe {
        width: 100%;
        height: 100%;
        border: none;
    }

    /* Contact Form Section */
    .form-section {
        background: white;
        padding: 80px 20px;
    }

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

    .contact-form {
        max-width: 800px;
        margin: 0 auto;
    }

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

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

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 15px 20px;
        border: 1px solid #E5E5E5;
        border-radius: 0;
        font-size: 15px;
        font-family: inherit;
        color: #716147;
        transition: border-color 0.3s;
    }

    .form-group input:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: #BF624C;
    }

    .form-group textarea {
        resize: vertical;
        min-height: 150px;
    }

    .submit-btn {
        background: #BF624C;
        color: white;
        border: none;
        padding: 15px 40px;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-weight: 600;
        cursor: pointer;
        transition: background 0.3s;
    }

    .submit-btn:hover {
        background: #b1553f;
    }

    @media (max-width: 768px) {
        .hero-section h1 {
            font-size: 32px;
        }

        .section-title {
            font-size: 32px;
        }

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

        .map-section {
            height: 350px;
        }
        .hero-section {
            padding: 60px 15px;
        }

        .section-header {
            text-align: center;
            padding: 0 10px;
            margin-left: 0;
        }

        .contact-form {
            padding: 0 10px;
        }

        .submit-btn {
            width: 100%;
            display: block;
            padding: 15px 20px;
        }
    }
