        :root {
            --bg: #fcfcfc;
            --text: #202420;
            --accent: #e9a11b;
            --muted: #9c9c9c;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: "Poppins", sans-serif;
        }

        .body {
            background: var(--bg);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .tit{
            text-align: center;
            padding: 5rem 1rem 2rem;
        }

        .tit h1 {
            font-size: 3rem;
            font-weight: 700;
            letter-spacing: 1px;
            display: inline-block;
            position: relative;
        }

        .tit h1::after {
            content: "";
            display: block;
            width: 50%;
            height: 3px;
            background: var(--accent);
            margin: 0.5rem auto 0;
            border-radius: 2px;
        }

        .contact {
            max-width: 1100px;
            margin: 0 auto;
            padding: 2rem 1rem 5rem;
            animation: fadeIn 1.2s ease forwards;
        }

        .contact-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
            align-items: start;
        }

        /* MAP */
        .map {
            width: 100%;
            height: 400px;
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
        }

        .map iframe {
            width: 100%;
            height: 100%;
            border: none;
            filter: grayscale(30%) invert(92%) contrast(85%);
        }

        /* FORM */
        .form {
            background: #ffffff;
            padding: 2rem;
            border-radius: 1rem;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
        }

        .form:hover {
            box-shadow: 0 10px 25px rgba(255, 166, 0, 0.25);
            transform: translateY(-5px);
        }

        .form h2 {
            color: var(--accent);
            margin-bottom: 1.5rem;
            font-size: 1.6rem;
        }

        .form label {
            display: block;
            font-size: 0.95rem;
            color: var(--muted);
            margin-top: 1rem;
            margin-bottom: 0.3rem;
        }

        .form input,
        .form textarea {
            width: 100%;
            padding: 0.9rem;
            border: 1px solid #333;
            border-radius: 8px;
            color: var(--text);
            font-size: 1rem;
            outline: none;
            transition: border 0.2s ease, box-shadow 0.2s ease;
        }

        .form input:focus,
        .form textarea:focus {
            border-color: var(--accent);
            box-shadow: 0 0 6px rgba(14, 24, 14, 0.4);
        }

        .form textarea {
            resize: none;
            height: 120px;
        }

        .form button {
            margin-top: 1.5rem;
            width: 100%;
            padding: 1rem;
            background: var(--accent);
            color: #000;
            font-size: 1.1rem;
            font-weight: 600;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .form button:hover {
            background: #c29005;
            transform: translateY(-3px);
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 600px) {
            header h1 {
                font-size: 2.3rem;
            }

            .form h2 {
                font-size: 1.4rem;
            }
        }