/* Unique Namespace: evp-contact- */
.evp-contact-container {
    font-family: 'Segoe UI', Roboto, Arial, sans-serif;
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
    color: #333;
}

.evp-contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.evp-contact-title {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.evp-contact-subtitle {
    color: #7f8c8d;
    font-size: 1.1rem;
}

.evp-contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Form Styling */
.evp-contact-form-wrapper {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 1px solid #eee;
}

.evp-contact-group {
    margin-bottom: 20px;
}

.evp-contact-label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
}

.evp-contact-input, 
.evp-contact-select, 
.evp-contact-textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    box-sizing: border-box; /* Ensures padding doesn't affect width */
}

.evp-contact-input:focus, 
.evp-contact-textarea:focus {
    border-color: #3498db;
    outline: none;
    box-shadow: 0 0 5px rgba(52, 152, 219, 0.2);
}

.evp-contact-btn {
    background-color: #2c3e50;
    color: white;
    padding: 14px 28px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
}

.evp-contact-btn:hover {
    background-color: #34495e;
}

/* Info Panel Styling */
.evp-info-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 4px solid #2c3e50;
}

.evp-info-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.evp-info-text {
    font-size: 0.95rem;
    color: #555;
    margin: 5px 0;
}

/* Responsive Adjustments */
@media (max-width: 850px) {
    .evp-contact-grid {
        grid-template-columns: 1fr;
    }
    
    .evp-contact-info-panel {
        order: -1; /* Shows info above form on mobile */
    }

    .evp-contact-title {
        font-size: 1.8rem;
    }
}