@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }
        
        body {
            background-color: #f5f5f5;
            color: #333;
            line-height: 1.6;
        }
        
        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
        }
        
        .contact-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .contact-header h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #2c3e50;
            position: relative;
            display: inline-block;
        }
        
        .contact-header h1::after {
            content: '';
            position: absolute;
            width: 50%;
            height: 4px;
            background: #3498db;
            bottom: -10px;
            left: 25%;
            border-radius: 2px;
        }
        
        .contact-header p {
            font-size: 1.1rem;
            color: #7f8c8d;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .contact-card {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .contact-card:hover {
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }
        
        .card-left, .card-right {
            flex: 1;
            min-width: 300px;
            padding: 2rem;
        }
        
        .card-left {
            background: #f9f9f9;
        }
        
        .card-left h3 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: #2c3e50;
        }
        
        .address p {
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .address i {
            color: #3498db;
        }
        
        .map-container {
            margin-top: 2rem;
            border-radius: 8px;
            overflow: hidden;
        }
        
        .map-container img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .contact-form {
            background: white;
            padding: 0;
            transition: none;
            box-shadow: none;
        }
        
        .contact-form:hover {
            box-shadow: none;
        }
        
        .form-group {
            margin-bottom: 1.5rem;
            position: relative;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: #2c3e50;
        }
        
        .form-control {
            width: 100%;
            padding: 12px 15px;
            font-size: 1rem;
            border: 2px solid #ddd;
            border-radius: 6px;
            transition: all 0.3s ease;
            background-color: #f9f9f9;
        }
        
        .form-control:focus {
            outline: none;
            border-color: #3498db;
            box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
            background-color: white;
        }
        
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        
        .submit-btn {
            display: inline-block;
            background: #3498db;
            color: white;
            border: none;
            padding: 12px 30px;
            font-size: 1rem;
            font-weight: 600;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .submit-btn:hover {
            background: #2980b9;
            transform: translateY(-2px);
        }
        
        .submit-btn:active {
            transform: translateY(0);
        }
        
        @media (min-width: 768px) {
            .contact-header h1 {
                font-size: 3rem;
            }
            
            .contact-header p {
                font-size: 1.2rem;
            }
            
            .form-group {
                margin-bottom: 2rem;
            }
        }
        
        /* Floating label effect */
        .form-group.focused label {
            position: absolute;
            top: -10px;
            left: 10px;
            font-size: 0.8rem;
            background: white;
            padding: 0 5px;
            color: #3498db;
        }