/* Corporate Page Styles */

.corporate-page {
    font-family: 'Poppins', sans-serif;
}

/* Why Partner Section */
.why-partner-section {
    padding: 60px 0;
}

.why-partner-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: #0e289c;
    margin-bottom: 20px;
}

.why-partner-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

.why-partner-section img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

/* Services Section */
.services-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.services-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: #0e289c;
    margin-bottom: 20px;
}

.services-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

.services-section img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

/* Enquiry Form Section */
.enquiry-section {
    padding: 60px 0;
}

.enquiry-form {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.enquiry-form h3 {
    color: #0e289c;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    font-size: 20px;
}

.form-control {
    border: 2px solid #e8f0fe;
    border-radius: 8px;
    padding: 10px;
    font-size: 12px;
}

.form-control:focus {
    border-color: #0e289c;
    box-shadow: 0 0 0 0.2rem rgba(14, 40, 156, 0.25);
}

.btn-submit {
    background: #0e289c;
    color: white;
    padding: 10px 30px;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background: #0b2285;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .why-partner-section,
    .services-section,
    .enquiry-section {
        padding: 40px 0;
    }

    .why-partner-section h2,
    .services-section h2 {
        font-size: 24px;
    }

    .enquiry-form {
        padding: 20px;
    }

    .enquiry-form h3 {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .why-partner-section h2,
    .services-section h2 {
        font-size: 20px;
    }

    .why-partner-section p,
    .services-section p {
        font-size: 12px;
    }

    .enquiry-form h3 {
        font-size: 16px;
    }
}