/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: flex-start;
    /* Changed from center to flex-start */
    align-items: center;
    background-color: #ffffff;
    padding: 1rem 1.5rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.logo img {
    max-width: 90px;
    height: auto;
    transition: transform 0.3s ease;
    margin-right: auto;
    /* Pushes everything else to the right */
}

.logo img {
    max-width: 90px;
    height: auto;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 1.5rem;
}

/* Partner Section */
.partner-section {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.partner-content {
    max-width: 900px;
    margin: 0 auto;
}

.partner-section h1 {
    font-size: 2.8rem;
    color: #273c75;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight {
    color: #3498db;
}

.subheading {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.benefit-card i {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    color: #273c75;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.benefit-card p {
    color: #666;
    font-size: 1rem;
}

/* CTA Container */
.cta-container {
    margin-top: 3rem;
}

.cta-container p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
}

.cta-container p a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    border-bottom: 2px dotted #3498db;
    padding-bottom: 2px;
}

.cta-container p a:hover {
    color: #2980b9;
}

/* Buttons */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1.1rem 2.2rem;
    background-color: #273c75;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta:hover {
    background-color: #1e2f58;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.cta i {
    font-size: 1rem;
}

.cta.secondary {
    background-color: #3498db;
}

.cta.secondary:hover {
    background-color: #2980b9;
}

/* Tooltip styling */
.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 200px;
    background-color: #273c75;
    color: #fff;
    text-align: center;
    border-radius: 8px;
    padding: 10px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 0.9rem;
    font-weight: normal;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }

    .partner-section {
        padding: 3rem 1.5rem;
    }

    .partner-section h1 {
        font-size: 2.2rem;
    }

    .subheading {
        font-size: 1.1rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .cta {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .partner-section h1 {
        font-size: 1.8rem;
    }

    .logo img {
        max-width: 140px;
    }
}

a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}