/* Basic styling */
        body {
            font-family: 'Open Sans', sans-serif;
            margin: 0;
            color: #333;
            background-color: #f9f9f9;
        }
        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 20px;
        }

        /* Header Section */
        .contact-header {
            text-align: center;
            padding: 60px 20px;
            background-color: #fff;
        }
        .contact-header h1 {
            font-family: 'Merriweather', serif;
            font-size: 2.8rem;
            margin-bottom: 10px;
        }
        .contact-header p {
            font-size: 1.1rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Main Contact Section */
        .contact-main {
            display: flex;
            gap: 40px;
            padding: 40px 0;
        }
        .contact-info, .contact-form-container {
            background-color: #fff;
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }
        .contact-info {
            flex: 1;
        }
        .contact-form-container {
            flex: 2;
        }
        h3 {
            font-family: 'Merriweather', serif;
            font-size: 1.6rem;
            margin-top: 0;
            margin-bottom: 25px;
            border-bottom: 2px solid #f0f0f0;
            padding-bottom: 10px;
        }

        /* Contact Details Styling */
        .contact-details p {
            display: flex;
            align-items: center;
            margin: 15px 0;
            font-size: 1rem;
        }
        .contact-details i {
            width: 30px;
            font-size: 1.2rem;
            color: #d9534f;
            margin-right: 15px;
        }
        .contact-details a {
            text-decoration: none;
            color: #333;
            transition: color 0.3s;
        }
        .contact-details a:hover {
            color: #d9534f;
        }
        .social-links {
            margin-top: 30px;
        }
        .social-links a {
            color: #333;
            font-size: 1.5rem;
            margin-right: 20px;
            transition: color 0.3s;
        }
        .social-links a:hover {
            color: #d9534f;
        }
        
        /* Contact Form Styling */
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 8px;
        }
        .form-group input, .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
            font-family: 'Open Sans', sans-serif;
        }
        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }
        .submit-btn {
            display: inline-block;
            width: 100%;
            background-color: #d9534f;
            color: white;
            padding: 15px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            border: none;
            cursor: pointer;
            font-size: 1.1rem;
            transition: background-color 0.3s;
        }
        .submit-btn:hover {
            background-color: #c9302c;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .contact-main {
                flex-direction: column;
            }
        }