
        /* General Body Styling */
        .contact-div {
            font-family: 'Inter', sans-serif;
            margin: 0;
            padding: 0;
            /* Background image from a reliable source */
            background-image: url('images/beach.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            color: #333;
            margin-top: 76px;
        }

        /* Main container for the form */
        .contact-container {
            width: 90%;
            max-width: 1100px; /* Increased max-width for two columns */
            margin: 2rem;
            padding: 2rem 3rem;
            background: rgb(18 18 18 / 36%); /* Semi-transparent white background */
            backdrop-filter: blur(3px); /* Frosted glass effect */
            -webkit-backdrop-filter: blur(10px); /* For Safari */
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
            box-sizing: border-box;
        }

        /* Form Header */
        .contact-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .contact-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            color: #fff;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            margin: 0;
        }

        .contact-subtitle {
            font-size: 1.1rem;
            color: #eee;
            margin-top: 0.5rem;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
        }

        /* Wrapper for form and info */
        .contact-body {
            display: flex;
            gap: 3rem;
            flex-wrap: wrap; /* Allows items to wrap to the next line on small screens */
        }

        /* Form Styling */
        .contact-form {
            flex: 2; /* Form takes up more space */
            display: grid;
            gap: 1.5rem;
            min-width: 300px; /* Minimum width for the form */
        }

        /* Input Group styling */
        .contact-input-group {
            position: relative;
        }

        .contact-input,
        .contact-textarea {
            width: 100%;
            padding: 1rem;
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.2);
            color: #fff;
            font-size: 1rem;
            font-family: 'Inter', sans-serif;
            transition: background 0.3s, border 0.3s;
            box-sizing: border-box;
        }

        .contact-input::placeholder,
        .contact-textarea::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }

        .contact-input:focus,
        .contact-textarea:focus {
            outline: none;
            background: rgba(255, 255, 255, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.5);
        }

        .contact-textarea {
            resize: vertical;
            min-height: 150px;
        }

        /* Submit Button */
        .contact-submit-btn {
            padding: 1rem 2rem;
            border: none;
            border-radius: 10px;
            background: #075f5f; /* A warm, inviting color */
            color: #fff;
            font-size: 1.1rem;
            font-weight: 500;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .contact-submit-btn:hover {
            background: #e65a50;
            transform: translateY(-2px);
        }

        .contact-submit-btn:active {
            transform: translateY(0);
        }

        /* Contact Info Section */
        .contact-info {
            flex: 1; /* Info section takes less space */
            min-width: 250px;
            color: #fff;
            padding-left: 3rem; /* Add padding */
            border-left: 1px solid rgba(255, 255, 255, 0.3); /* Separator line */
        }

        .contact-info h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            margin-top: 0;
            margin-bottom: 1.5rem;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
        }

        .contact-info-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .contact-info-icon {
            width: 24px;
            height: 24px;
            flex-shrink: 0;
            margin-top: 4px;
        }

        .contact-info-text p {
            margin: 0;
            line-height: 1.6;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .contact-body {
                flex-direction: column;
                gap: 2rem;
            }
            .contact-info {
                padding-left: 0;
                border-left: none;
                padding-top: 2rem;
                border-top: 1px solid rgba(255, 255, 255, 0.3);
            }
        }

        @media (max-width: 768px) {
            .contact-container {
                padding: 2rem;
                margin: 1rem;
            }

            .contact-title {
                font-size: 2rem;
            }
        }

        @media (max-width: 480px) {
            .contact-container {
                padding: 12.5px;
            }

            .contact-title {
                font-size: 1.8rem;
            }

            .contact-subtitle {
                font-size: 1rem;
            }
        }
