
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    color: #333;
    line-height: 1.7;
    background-color: #fdfdfd;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Partner Hero Section */
.partner-hero {
    background-image: url('DSC01042.jpg'); 
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: #fff;
}

.partner-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(20, 30, 40, 0.6); /* Slightly different overlay color */

}

.partner-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 20px;
}

.partner-hero-content h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}

.partner-hero-content p {
    font-size: 1.25rem;
    margin-bottom: 35px;
    font-weight: 300;
}


.cta-button-partner {
    background-color: #ff6f00; /* Engaging orange */
    color: #fff;
    padding: 16px 35px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1.15rem;
    box-shadow: 0 4px 20px rgba(255, 111, 0, 0.4);
}

.cta-button-partner:hover {
    background-color: #e65100; /* Darker orange */
    transform: translateY(-3px);
}


/* Why Partner Section */
.why-partner {
    padding: 70px 0;
    background-color: #fff;
    text-align: center;
}

.why-partner h2 {
    font-size: 2.8rem;
    margin-bottom: 50px;
    color: #1a237e; /* Deep indigo */
    font-weight: 700;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
    text-align: left;

}

.benefit-item {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid #ff6f00; /* Accent border */
    box-shadow: 0 6px 18px rgba(0,0,0,0.07);
    transition: transform 0.3s ease;
}
.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 2.5rem;
    color: #ff6f00;
    margin-bottom: 15px;
    display: block; /* Center icon if text-align center on parent */

    text-align: center;
}

.benefit-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #1a237e;
    text-align: center;
}

.benefit-item p {
    font-size: 1rem;
    color: #455a64; /* Bluish grey */
    text-align: center;
}

/* Partnership Types Section */
.partnership-types {
    padding: 70px 0;
    background-color: #eceff1; /* Light grey */

}

.partnership-types h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #1a237e;
}
.partnership-types .section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #546e7a;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.types-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;

}

.type-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden; /* To contain image */
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease;
}
.type-card:hover {
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.type-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}


.type-card h3 {
    font-size: 1.6rem;
    color: #0277bd; /* Specific color for this card type */
    margin: 20px 20px 10px 20px;
}
.type-card:nth-child(2) h3 { color: #558b2f; } /* Different color for second card */
.type-card:nth-child(3) h3 { color: #d84315; } /* Different color for third card */


.type-card p {
    font-size: 1rem;
    color: #455a64;
    padding: 0 20px 20px 20px;
    flex-grow: 1; /* Allows p to take up space before button */
}

.learn-more-btn {
    display: block;
    background-color: #f0f0f0;
    color: #333;
    text-align: center;
    padding: 12px 20px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin: 0 20px 20px 20px;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.learn-more-btn:hover {
    background-color: #0277bd; /* Corresponds to h3 color */
    color: #fff;
    border-color: #0277bd;
}

.type-card:nth-child(2) .learn-more-btn:hover { background-color: #558b2f; border-color: #558b2f;}
.type-card:nth-child(3) .learn-more-btn:hover { background-color: #d84315; border-color: #d84315;}


/* How It Works Section */
.how-it-works {
    padding: 70px 0;
    background-color: #fff;
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 50px;
    color: #1a237e;
}

.steps-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}
/* Basic timeline line */
.steps-timeline::before {
    content: '';
    position: absolute;
    left: 25px; /* Adjust based on step-number size */
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: #ff6f00;
    border-radius: 2px;
}

.step {
    position: relative;
    padding-left: 70px; /* Space for number 

and some margin */
    margin-bottom: 40px;
}
.step:last-child {
    margin-bottom: 0;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background-color: #ff6f00;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;

    border: 3px solid #fff;
    box-shadow: 0 0 0 3px #ff6f00;
}

.step-content h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: #1a237e;
}

.step-content p {
    font-size: 1rem;
    color: #455a64;
}


/* Partner Form Section */
.partner-form-section {
    padding: 70px 0;
    background-color: #f4f6f8; /* Light neutral background */

}

.partner-form-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #1a237e;
}
.partner-form-section > .container > p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #546e7a;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.partner-inquiry-form {
    max-width: 700px;
    margin: 0 auto;

    background-color: #fff;
    padding: 35px 45px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.partner-inquiry-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #37474f; /* Darker grey for labels */
    font-size: 1.05rem;
}

.partner-inquiry-form input[type="text"],
.partner-inquiry-form input[type="email"],
.partner-inquiry-form input[type="tel"],
.partner-inquiry-form textarea {
    width: calc(100% - 24px); /* Account for padding */

    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #cfd8dc; /* Lighter border */
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-family: 'Roboto', sans-serif;
}

.partner-inquiry-form input:focus,
.partner-inquiry-form textarea:focus {
    outline: none;
    border-color: #ff6f00;
    box-shadow: 0 0 0 0.2rem rgba(255,111,0,.25);
}

.partner-inquiry-form textarea {
    resize: vertical;

    min-height: 100px;
}

.submit-inquiry-button {
    background-color: #1a237e; /* Deep indigo */
    color: #fff;
    padding: 15px;
    border: none;
    border-radius: 5px;
    width: 100%;
    font-size: 1.2rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(26, 35, 126, 0.3);
}

.submit-inquiry-button:hover {

    background-color: #0d1158; /* Darker indigo */
    transform: translateY(-2px);
}

/* Partner Testimonials Section */
.partner-testimonials {
    padding: 70px 0;
    background-color: #fff;
}
.partner-testimonials h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 50px;
    color: #1a237e;
}
.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    /* Basic styling - for a real slider, you'd have more complex CSS or use a library */

}
.testimonial-item {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 20px; /* If not using a JS slider, items will stack */
}
.partner-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: contain;
    margin: 0 auto 15px auto;
    background-color: #fff; /* If logo is transparent */
    padding: 5px;
    border: 1px solid #eee;
}

.testimonial-item p {
    font-size: 1.1rem;
    font-style: italic;
    color: #455a64;
    margin-bottom: 15px;
}
.testimonial-item h4 {
    font-size: 1rem;
    font-weight: 500;
    color: #1a237e;
}


/* Footer */
footer {
    background-color: #1a237e; /* Deep indigo footer */
    color: #e8eaf6; /* Lighter text for contrast */
    text-align: center;
    padding: 35px 0;

    font-size: 0.95rem;
}
footer p {
    margin: 8px 0;
}
footer a {
    color: #ffab40; /* Amber accent for links */
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .partner-hero-content h1 {
        font-size: 2.8rem;
    }
    .why-partner h2, .partnership-types h2, .how-it-works h2, .partner-form-section h2, 

.partner-testimonials h2 {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .partner-hero-content h1 {
        font-size: 2.4rem;
    }
    .partner-hero-content p {
        font-size: 1.1rem;
    }
    .benefits-grid {
        grid-template-columns: 1fr; /* Stack benefits */
    }
    .types-container {
         grid-template-columns: 1fr; /* Stack partnership types */
    }
    .steps-timeline::before {

        left: 19px; /* Adjust for smaller step-number */
    }
    .step {
        padding-left: 55px;
    }
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    .partner-inquiry-form {
        padding: 25px 30px;
    }
}

@media (max-width: 480px) {
    .partner-hero-content h1 {
        font-size: 2rem;
    }
    .cta-button-partner {

        padding: 12px 28px;
        font-size: 1rem;
    }
    .why-partner h2, .partnership-types h2, .how-it-works h2, .partner-form-section h2, .partner-testimonials h2 {
        font-size: 2rem;
    }
    .benefit-item, .type-card {
        padding: 20px;
    }
}
