@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&display=swap'); 
        :root {
            --primary-color: #4f46e5;
            --transition: all 0.3s ease;
            --primary-dark: #4338ca;
            --secondary-color: #2c3e50;
            --background-color: #f3f4f6;
            --text-color: #1f2937;
            --card-background: #ffffff;
            --input-border: #d1d5db;
        }

        body {
            font-family: "Bricolage Grotesque", sans-serif;
            width: 100%;
            margin: 0px;
        }

        a{
            text-decoration: none;
            color: #fff;
        }
        .get-in-touch{
            background: linear-gradient(135deg, #ffffff 0%, #C3CFE2 100%);
            min-height: 100vh;
            margin: 0px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .container {
            background-color: var(--card-background);
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            padding: 2rem;
            width: 100%;
            width: 100%;
            margin: 6rem auto;
            max-width: 400px;
            transition: transform 0.3s ease;
        }

        .container:hover {
            transform: translateY(-5px);
        }

        h1 {
            color: var(--text-color);
            text-align: center;
            margin-bottom: 1rem;
        }

        .p1 {
            color: #6b7280;
            text-align: center;
            margin-bottom: 2rem;
        }

        form {
            display: flex;
            flex-direction: column;
        }

        .form-group {
            margin-bottom: 1rem;
        }

        label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--text-color);
        }

        input,
        textarea {
            width: 95%;
            padding: 0.75rem;
            border: 1px solid var(--input-border);
            border-radius: 4px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        #message{
            resize: vertical;
        }

        input:focus,
        textarea:focus {
            outline: none;
            border-color: var(--primary-color);
        }

        button {
            background-color: #3498db;
            color: white;
            border: none;
            padding: 0.75rem;
            border-radius: 4px;
            font-size: 1rem;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        button:hover {
            background-color: #2a6c97;
        }

        button:disabled {
            background-color: #9ca3af;
            cursor: not-allowed;
        }

        .resulting{
            font-size: 1.2rem;
            margin: 0px auto;
            padding: 10px 0 0 0;
        }
        
        .success-message,
        .error-message {
            text-align: center;
            padding: 1rem;
            border-radius: 4px;
            margin-top: 1rem;
        }

        .success-message {
            background-color: #10b981;
            color: white;
        }

        .error-message {
            background-color: #ef4444;
            color: white;
        }

        @media (max-width: 480px) {
            .container {
                padding: 1rem;
            }
        }

        @media screen and (max-width: 768px) {
            .menu-icon {
                display: block;
            }

            #menulist {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--secondary-color);
                flex-direction: column;
                align-items: center;
                padding: 1rem 0;
            }

            #menulist.show {
                display: flex;
                margin: 0px;
            }

            #menulist li {
                margin: 0.5rem 0;
            }
        }