 /* Contact Page Styles */
        .contact-container {
            display: flex;
            flex-wrap: wrap;
            margin: 10%;
            gap: 2rem;
            margin-bottom: 3rem;
        }
       
        .contact-info {
            flex: 1;
            min-width: 300px;
        }
        
         h2 {
            text-align:center;
        }

        .contact-info h3 {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            color:orange;
        }
       
        .contact-details {
            margin-bottom: 2rem;
        }
       
        .contact-details p {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }
       
        .contact-details i {
            margin-right: 15px;
            font-size: 1.2rem;
            color: var(--primary);
            min-width: 25px;
        }
       
        .contact-form {
            flex: 1;
            min-width: 300px;
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
        }
       
        .form-group {
            margin-bottom: 1.5rem;
        }
       
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: var(--dark);
        }
       
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
            transition: border-color 0.3s;
        }
       
        .form-control:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.2);
        }
       
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
       
        .map {
            height: 400px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
            margin: 3rem 0;
        }
       
        .map iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        
