.newsletter-message {
    margin-bottom: 1.5rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    animation: slideDown 0.3s ease;
    transition: opacity 0.3s ease;
}
.newsletter-message-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.newsletter-message-error {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
}
.newsletter-message-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.newsletter-message-content i {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}
.newsletter-message-content span {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.5;
}
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
button[type="submit"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
.contact-section {
    padding: 80px 0;
    background: #f8f9fa;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
.contact-info h2 {
    margin-bottom: 40px;
    color: #333;
    font-size: 2rem;
    font-weight: 600;
}
.contact-item {
    margin-bottom: 35px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border-left: 4px solid #356958;
}
.contact-item h3 {
    margin-bottom: 12px;
    color: #333;
    font-size: 1.2rem;
    font-weight: 600;
}
.contact-value {
    margin: 0 0 8px 0;
    font-weight: 700;
    font-size: 1.1rem;
    color: #356958;
}
.contact-value a {
    color: #356958;
    text-decoration: none;            
}
.contact-value a:hover {
    text-decoration: underline;
}
.contact-note {
    margin: 4px 0;
    color: #666;
    font-size: 0.95rem;
}
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.contact-form h2 {
    margin-bottom: 30px;
    color: #333;
    font-size: 2rem;
    font-weight: 600;
}
.form-alert {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 30px;
    border-left: 4px solid #f39c12;
}
.form-alert p {
    margin: 0;
    color: #856404;
    font-weight: 500;
    font-size: 0.95rem;
}
.disabled-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    opacity: 0.6;
}
.form-group {
    display: flex;
    flex-direction: column;
}
.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #555;
    font-size: 0.95rem;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}
.form-group input:disabled,
.form-group textarea:disabled {
    background-color: #f8f9fa;
    cursor: not-allowed;
}
.form-group textarea {
    resize: vertical;
    min-height: 200px;
}
.btn.btn-primary {
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
}
.btn.btn-primary:disabled {
    opacity: 0.6;
    background-color: #6c757d;
    border-color: #6c757d;
}
.contact-message {
    margin-bottom: 1.5rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    animation: slideDown 0.3s ease;
    transition: opacity 0.3s ease;
}

.contact-message-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.contact-message-error {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
}

.contact-message-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-message-content i {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.contact-message-content span {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.5;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
