main {
    text-align: center;
    padding: 20px;
}

/* Container styles */
.container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    background-color: var(--main-color);
}

@media (min-width: 1200px) {
    .container {
        max-width: 80%;
    }
}

/* Contact Hero Section */
.contact-hero {
    display: flex;
    flex-direction: column;
    margin: 2rem 0;
    padding: 1rem;
}

@media (min-width: 992px) {
    .contact-hero {
        flex-direction: row;
        gap: 2rem;
        margin: 3rem 0;
    }
}

/* Contact Guide Section */
.contact-guide {
    flex: 1;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 2rem;
}

.contact-guide h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    font-weight: 700;
}

.contact-guide h1 span {
    color: var(--accent-color);
}

.contact-guide p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--text-color);
}

/* Contact Methods */
.contact-methods {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .contact-methods {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-method-item {
    display: flex;
    align-items: flex-start;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.contact-method-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-right: 1rem;
    padding: 10px;
    background-color: rgba(193, 18, 31, 0.1);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-details {
    flex: 1;
    text-align: left;
}

.method-details h3 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.method-details p, .method-details address {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-style: normal;
}

.method-details a {
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.method-details a:hover {
    color: var(--secondary-accent);
    text-decoration: underline;
}

/* Contact Form Container */
.contact-form-container {
    flex: 1;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.contact-form-container h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    display: flex;
    align-items: center;
}

.contact-form-container h2 i {
    margin-right: 10px;
    color: var(--accent-color);
}

/* Form Styling */
.contact-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 576px) {
    .contact-form {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: var(--text-color);
    background-color: rgba(255, 255, 255, 0.8);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: var(--accent-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(193, 18, 31, 0.1);
}

.form-group input.invalid, 
.form-group select.invalid, 
.form-group textarea.invalid {
    border-color: #ff3860;
    background-color: rgba(255, 56, 96, 0.05);
}

.submit-btn {
    grid-column: 1 / -1;
    padding: 0.75rem 1.5rem;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn i {
    font-size: 1rem;
}

.submit-btn:hover {
    background-color: var(--secondary-accent);
    transform: translateY(-2px);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Map Section */
.map-section {
    padding: 3rem 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-header h2 i {
    margin-right: 10px;
    color: var(--accent-color);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-color);
    max-width: 600px;
    margin: 0 auto;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 400px;
}

.map-container iframe {
    border-radius: 12px;
    height: 100%;
}

/* FAQ Section */
.contact-faq-section {
    padding: 3rem 1rem;
    background-color: rgba(255, 255, 255, 0.02);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--main-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-color);
    font-weight: 600;
}

.faq-question i {
    font-size: 1rem;
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: rgba(0, 0, 0, 0.02);
}

.faq-answer p {
    padding: 1rem;
    margin: 0;
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* CTA Section */
.cta-section {
    padding: 3rem 1rem;
    background-color: rgba(0, 48, 73, 0.05);
    border-radius: 12px;
    margin: 2rem 1rem;
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.primary-btn {
    background-color: var(--accent-color);
    color: white;
}

.primary-btn:hover {
    background-color: var(--secondary-accent);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.secondary-btn {
    background-color: transparent;
    color: var(--text-color);
    border: 2px solid var(--accent-color);
}

.secondary-btn:hover {
    background-color: var(--accent-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Alert Messages */
.alert {
    padding: 1rem;
    border-radius: 5px;
    margin: 1rem;
    text-align: center;
    font-weight: 500;
    animation: fadeIn 0.5s ease;
    position: relative;
    transition: opacity 0.5s ease;
}

.alert-success {
    background-color: rgba(72, 187, 120, 0.2);
    color: #2f855a;
    border-left: 4px solid #2f855a;
}

.alert-error {
    background-color: rgba(245, 101, 101, 0.2);
    color: #c53030;
    border-left: 4px solid #c53030;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .contact-guide h1 {
        font-size: 1.8rem;
    }
    
    .contact-form-container h2 {
        font-size: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .method-details h3 {
        font-size: 1.1rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    .submit-btn {
        padding: 0.6rem 1.2rem;
    }
}

@media (min-width: 992px) {
    .contact-guide {
        padding: 3rem;
    }
    
    .contact-form-container {
        padding: 3rem;
    }
    
    .contact-guide h1 {
        font-size: 2.5rem;
    }
    
    .contact-form-container h2 {
        font-size: 2rem;
    }
}
