.contact-container {
    display: flex;
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
    gap: 4rem;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-info {
    flex: 1;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
}

.contact-form {
    flex: 2;
    padding: 2rem;
}

.section-title {
    font-size: 1.8rem;
    color: #124375;
    margin-bottom: 2rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 3px;
    background: #007bff;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.info-item i {
    font-size: 1.5rem;
    margin-right: 1rem;
    padding: 1rem;
    background: #e9ecef;
    border-radius: 50%;
}

.info-content h3 {
    font-size: 1.2rem;
    color: #124375;
    margin-bottom: 0.5rem;
}

.info-content p {
    color: #666;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.submit-btn {
    background: #007bff;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background: #0056b3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        padding: 1rem;
        margin: 1rem;
        gap: 2rem;
    }

    .contact-info,
    .contact-form {
        padding: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .info-item i {
        padding: 0.8rem;
        font-size: 1.2rem;
    }

    .info-content h3 {
        font-size: 1.1rem;
    }

    .submit-btn {
        width: 100%;
    }
}
/* banner */
.blog-banner {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    padding: 9rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}



/* Banner content */
.banner-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.banner-title {
    color: white;
    font-size: 3.5rem;
    font-family: 'Arial', sans-serif;
    margin-bottom: 1rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.banner-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    font-family: 'Arial', sans-serif;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.banner-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: white;
    color: #4f46e5;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-family: 'Arial', sans-serif;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.banner-button:hover {
    transform: translateY(-2px);
}

/* Responsive design */
@media (max-width: 768px) {
    .blog-banner {
        padding: 3rem 1.5rem;
    }

    .banner-title {
        font-size: 2.5rem;
    }

    .banner-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .banner-title {
        font-size: 2rem;
    }

    .banner-subtitle {
        font-size: 1rem;
    }

    .banner-button {
        padding: 0.875rem 1.75rem;
    }
}
