 /* Reset */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html, body {
        font-family: 'Poppins', sans-serif;
        background-color: #f4f4f9;
        color: #333;
        font-size: 16px;
        line-height: 1.6;
        width: 100vw;
        overflow-x: hidden;
        margin: 0;
        padding: 0;
    }

    .container {
        width: 100%;
        max-width: 450px;
        background-color: #fff;
        margin: 20px auto;
        padding: 20px 20px;
        border-radius: 15px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        animation: fadeIn 0.8s ease-out;
    }

    h2, h1 {
        text-align: center;
        color: #333;
        font-size: 24px;
        font-weight: 600;
        margin-bottom: 20px;
    }

    label {
        display: block;
        margin-bottom: 5px;
        font-weight: 500;
        color: #333;
        font-size: 14px;
    }

    input, select, textarea {
        width: 100%;
        padding: 14px 40px 14px 14px;
        font-size: 14px;
        border-radius: 15px;
        border: 1px solid #e0e0e0;
        background-color: #f4f4f9;
        transition: all 0.3s ease;
        height: 48px;
    }

    input:focus, select:focus, textarea:focus {
        border-color: #00bfa5;
        box-shadow: 0 0 8px rgba(0, 191, 165, 0.5);
        outline: none;
    }

    select {
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23333' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 15px center;
        background-size: 12px;
    }

    button {
        display: block;
        width: 100%;
        padding: 14px;
        background: linear-gradient(90deg, #00bfa5, #00a897);
        color: white;
        border: none;
        border-radius: 12px;
        font-size: 15px;
        cursor: pointer;
        margin-top: 20px;
    }

    button:hover {
        background: linear-gradient(90deg, #009688, #00796b);
    }

    video, img {
        width: 100%;
        border-radius: 12px;
        margin-top: 10px;
    }

    #map, .map {
        height: 300px;
        margin-top: 10px;
        margin-bottom: 10px;
        border: 1px solid #e0e0e0;
        border-radius: 15px;
    }

    /* Modal Styles */
    .modal {
        display: none;
        position: fixed;
        z-index: 1000;
        left: 0; top: 0;
        width: 100%; height: 100%;
        background-color: rgba(0, 0, 0, 0.4);
    }

    .modal-content {
        background-color: #fff;
        margin: 20% auto;
        padding: 20px;
        border-radius: 15px;
        width: 80%;
        max-width: 320px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        text-align: center;
        color: #333;
    }

    .modal-content h3 {
        margin-top: 0;
        font-size: 18px;
        font-weight: 600;
    }

    .close-btn {
        margin-top: 20px;
        padding: 10px 20px;
        background: linear-gradient(90deg, #00bfa5, #00a897);
        color: white;
        border: none;
        border-radius: 10px;
        font-size: 14px;
        cursor: pointer;
    }

    .close-btn:hover {
        background: linear-gradient(90deg, #009688, #00796b);
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }