

        /* Contact Section */
        .contact-section {
            background: rgba(255, 255, 255, 0.95);
            padding: 50px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            margin-bottom: 40px;
            animation: fadeIn 1s ease-in;
        }

        .section-title {
            font-size: 2.5rem;
            margin-bottom: 40px;
            color: #2c3e50;
            position: relative;
            display: inline-block;
            text-align: center;
            width: 100%;
        }

        .section-title:after {
            content: '';
            position: absolute;
            width: 70px;
            height: 4px;
            background: #e63946;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

        /* Contact Content */
        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            margin-bottom: 40px;
        }

        .contact-info {
            animation: fadeIn 1.2s ease-in;
        }

        .contact-info h3 {
            font-size: 1.8rem;
            color: #2c3e50;
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 2px solid #e63946;
        }

        .info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
        }

        .info-icon {
            font-size: 1.5rem;
            color: #e63946;
            margin-right: 15px;
            min-width: 30px;
            text-align: center;
        }

        .info-content h4 {
            font-size: 1.2rem;
            color: #2c3e50;
            margin-bottom: 5px;
        }

        .info-content p, .info-content a {
            color: #555;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .info-content a:hover {
            color: #e63946;
        }

        /* Contact Form */
        .contact-form {
            animation: fadeIn 1.4s ease-in;
        }

        .contact-form h3 {
            font-size: 1.8rem;
            color: #2c3e50;
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 2px solid #e63946;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #2c3e50;
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }

        .form-control:focus {
            outline: none;
            border-color: #e63946;
            box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
        }

        textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }

        .btn-primary {
            background: #e63946;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 5px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s ease, transform 0.3s ease;
            display: inline-block;
        }

        .btn-primary:hover {
            background: #c1121f;
            transform: translateY(-2px);
        }

        .btn-primary i {
            margin-right: 8px;
        }

        /* Map Section */
        .map-section {
            margin: 50px 0;
            animation: fadeIn 1.6s ease-in;
        }

        .map-container {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            height: 400px;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
            display: block;
        }

        /* Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Form Status Messages */
        .form-status {
            padding: 15px;
            border-radius: 5px;
            margin-bottom: 20px;
            display: none;
        }

        .form-status.success {
            background: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
            display: block;
        }

        .form-status.error {
            background: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
            display: block;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .contact-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .map-container {
                height: 350px;
            }
        }

        @media (max-width: 768px) {
            .content-wrapper {
                padding: 20px 3%;
            }
            
            .contact-section {
                padding: 30px;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .map-container {
                height: 300px;
            }
        }

        @media (max-width: 576px) {
            .content-wrapper {
                padding: 15px;
            }
            
            .contact-section {
                padding: 20px;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .info-item {
                flex-direction: column;
                text-align: center;
            }
            
            .info-icon {
                margin-right: 0;
                margin-bottom: 10px;
            }
            
            .map-container {
                height: 250px;
            }
        }