:root {
            --primary-color: #2c3e50;
            --secondary-color: #34495e;
            --accent-color: #e74c3c;
            --text-light: #ecf0f1;
            --bg-dark: #1a1a1a;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        /* Page Header */
        .page-header {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 4rem 0;
            margin-bottom: 3rem;
        }
        
        .page-header h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        .page-header p {
            font-size: 1.2rem;
            opacity: 0.9;
        }
        
        /* Contact Section */
        .contact-section {
            padding: 3rem 0;
        }
        
        .contact-form-wrapper {
            background: white;
            border-radius: 8px;
            padding: 3rem;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        
        .contact-form-wrapper h3 {
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            font-weight: 700;
        }
        
        .form-label {
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }
        
        .form-control, .form-select {
            border: 2px solid #e0e0e0;
            padding: 0.8rem;
            border-radius: 4px;
            transition: border-color 0.3s;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--accent-color);
            box-shadow: 0 0 0 0.2rem rgba(231, 76, 60, 0.25);
        }
        
        .btn-submit {
            background-color: var(--accent-color);
            color: white;
            padding: 0.8rem 3rem;
            border: none;
            border-radius: 4px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s;
        }
        
        .btn-submit:hover {
            background-color: #c0392b;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        
        /* Contact Info Cards */
        .contact-info-wrapper {
            margin-top: 3rem;
        }

        .contact-info-card {
            background: white;
            border-radius: 8px;
            padding: 2rem;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            text-align: center;
            transition: all 0.3s;
            margin-bottom: 1.5rem; /* Add margin bottom instead of relying on mt-4 */
        }

        .contact-info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.15);
        }
        
        .contact-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin: 0 auto 1.5rem;
        }
        
        .contact-info-card h4 {
            color: var(--primary-color);
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        .contact-info-card p {
            color: #666;
            margin-bottom: 0.5rem;
            line-height: 1.8;
        }
        
        .contact-info-card a {
            color: var(--accent-color);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .contact-info-card a:hover {
            color: var(--primary-color);
        }
        
        /* Map Section */
        .map-section {
            margin-top: 4rem;
            margin-bottom: 4rem;
        }
        
        .map-container {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        
        .map-container iframe {
            width: 100%;
            height: 400px;
            border: none;
        }
        
        /* Social Media Section */
        .social-section {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 3rem 0;
            text-align: center;
            margin-top: 4rem;
        }
        
        .social-section h3 {
            margin-bottom: 1.5rem;
            font-weight: 700;
        }
        
        .social-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
        }
        
        .social-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255,255,255,0.1);
            padding: 1rem 2rem;
            border-radius: 8px;
            color: white;
            text-decoration: none;
            transition: all 0.3s;
            font-weight: 600;
        }
        
        .social-link:hover {
            background: white;
            color: var(--primary-color);
            transform: translateY(-3px);
        }
        
        .social-link i {
            font-size: 1.5rem;
        }