main {
    width: 1000px;
    margin: 4rem auto 0;
    padding: 30px;
    background: #ffffff;
    color: #1a1a1a;
    line-height: 1.55;
}

/* Animations */
@keyframes fadeInUp {
    from {
    opacity: 0;
    transform: translateY(30px);
    }
    to {
    opacity: 1;
    transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
    opacity: 0;
    transform: translateX(-30px);
    }
    to {
    opacity: 1;
    transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
    opacity: 0;
    transform: translateX(30px);
    }
    to {
    opacity: 1;
    transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
    opacity: 0;
    transform: scale(0.9);
    }
    to {
    opacity: 1;
    transform: scale(1);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fadeInLeft {
    animation: fadeInLeft 0.8s ease-out forwards;
}

.animate-fadeInRight {
    animation: fadeInRight 0.8s ease-out forwards;
}

.animate-scaleIn {
    animation: scaleIn 0.6s ease-out forwards;
}

.animate-delay-1 { animation-delay: 0.2s; }
.animate-delay-2 { animation-delay: 0.4s; }
.animate-delay-3 { animation-delay: 0.6s; }

/***************************************** breadcrumbs section ******************************************/
.breadcrumbs {
    font-size: 14px;
    margin: 20px 0;
    padding-bottom: 18px;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(to right, #2563eb, #60a5fa, #2563eb) 1;
    color: #555;
}

.breadcrumbs a {
    color: #0b3d91;
    text-decoration: none;
    margin: 0 6px;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.breadcrumbs span {
    color: #333;
    margin-left: 5px;
    cursor: default;
}

/* Hero Section - Full Width with Side Content */
.contact-hero {
    display: flex;
    align-items: center;
    gap: 4rem;
    background: white;
    padding: 3rem 0;
    margin-bottom: 2rem;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    color: #0b3d91;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.hero-stat {
    text-align: center;
}

.hero-stat .number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0b3d91;
    display: block;
}

.hero-stat .label {
    font-size: 0.9rem;
    color: #6b7280;
}

.hero-image {
    flex: 0 0 500px;
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(11, 61, 145, 0.15);
}

/* Contact Grid Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

/* Quick Contact Cards */
.quick-contact {
    grid-column: span 2;
    background: linear-gradient(135deg, #0b3d91 0%, #1e4d8b 100%);
    color: white;
    padding: 3rem;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.quick-contact::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.quick-contact-content {
    position: relative;
    z-index: 1;
}

.quick-contact h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.contact-methods-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.contact-method:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.15);
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
}

.contact-details h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.contact-details p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

/* Response Time Card */
.response-info {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid #0b3d91;
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
}

.response-info::before {
    content: '⏰';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    background: white;
    padding: 0.5rem;
    border-radius: 50%;
    border: 2px solid #0b3d91;
}

.response-info h3 {
    color: #0b3d91;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.response-info p {
    color: #4a5568;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.response-badge {
    display: inline-block;
    background: #0b3d91;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Contact Form - Full Width */
.contact-form-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 4rem;
    border-radius: 24px;
    margin-bottom: 4rem;
    border: 1px solid #e1e8ed;
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h2 {
    color: #0b3d91;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.form-header p {
    color: #4a5568;
    font-size: 1.1rem;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    display: block;
    color: #2d3748;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0b3d91;
    box-shadow: 0 0 0 4px rgba(11, 61, 145, 0.1);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.form-submit {
    background: linear-gradient(135deg, #0b3d91, #1e4d8b);
    color: white;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.form-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.form-submit:hover::before {
    width: 300px;
    height: 300px;
}

.form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(11, 61, 145, 0.4);
}

/* FAQ Section */
.faq-section {
    display: flex;
    align-items: center;
    gap: 3rem;
    background: white;
    padding: 3rem;
    border-radius: 24px;
    border: 2px solid #0b3d91;
}

.faq-content {
    flex: 1;
}

.faq-content h2 {
    color: #0b3d91;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.faq-content p {
    color: #4a5568;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.faq-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #0b3d91, #1e4d8b);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.faq-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(11, 61, 145, 0.3);
}

.faq-image {
    flex: 0 0 250px;
}

.faq-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 16px;
}