/* Hero section */
.hero-section {
    background: linear-gradient(135deg, #1a237e 0%, #0d47a1 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-section h1 {
    font-size: 56px;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 40px;
}

.lead {
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 40px;
    opacity: 0.9;
}

.emphasis {
    font-size: 32px;
    font-weight: 600;
    color: #64ffda;
}

.hero-background {
    display: none;
}

/* Intro section */
.intro-section {
    max-width: 800px;
    margin: 80px auto;
    padding: 0 20px;
}

.intro-section p {
    font-size: 20px;
    line-height: 1.6;
    color: #2c3e50;
    margin-bottom: 30px;
}

.value-props {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    margin: 40px 0;
    border: 1px solid #e9ecef;
}

.value-props h3 {
    color: #1a237e;
    margin-bottom: 25px;
    font-size: 24px;
}

.value-props ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.value-props li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 18px;
    color: #2c3e50;
}

.value-props li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #64ffda;
    font-weight: bold;
}

/* Partnership Levels */
.partnership-levels {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f8f9fa 0%, white 100%);
}

.partnership-levels h2 {
    text-align: center;
    color: #1a237e;
    font-size: 36px;
    margin-bottom: 60px;
}

.levels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.level-card {
    background: white;
    border-radius: 12px;
    padding: 40px;
    position: relative;
    transition: transform 0.3s ease;
    border: 1px solid #e9ecef;
}

.level-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.premium {
    box-shadow: 0 4px 20px rgba(26,35,126,0.15);
    border: 2px solid #1a237e;
}

.level-header {
    margin-bottom: 30px;
    position: relative;
}

.level-header h3 {
    color: #1a237e;
    font-size: 24px;
    margin-bottom: 10px;
}

.level-tag {
    display: inline-block;
    padding: 6px 12px;
    background: #f8f9fa;
    border-radius: 20px;
    font-size: 14px;
    color: #2c3e50;
}

.recommended-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: #64ffda;
    color: #1a237e;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.level-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.level-features li {
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
    color: #2c3e50;
}

.level-features li:first-child {
    font-weight: 600;
    color: #1a237e;
}

.level-cta {
    display: block;
    text-align: center;
    padding: 15px;
    background: #1a237e;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.level-cta:hover {
    background: #0d47a1;
}

/* Personal Engagement Section */
.personal-engagement {
    background: #f8f9fa;
    padding: 80px 0;
}

.engagement-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.engagement-intro {
    text-align: center;
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 40px;
}

.engagement-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.engagement-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.engagement-card h3 {
    color: #1a237e;
    font-size: 24px;
    margin-bottom: 20px;
}

.engagement-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.engagement-card li {
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
    color: #2c3e50;
}

/* Partner Types Section */
.partner-types {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.partner-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 40px;
    margin-bottom: 40px;
    border: 1px solid #e9ecef;
}

.partner-card h2 {
    color: #1a237e;
    font-size: 28px;
    margin-bottom: 30px;
    font-weight: 700;
}

.card-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.why-matters, .offering {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

.why-matters h4, .offering h4 {
    color: #1a237e;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}

.why-matters p, .offering p {
    color: #2c3e50;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* Partnership Options Section */
.partnership-options {
    background: #f8f9fa;
    padding: 80px 0;
    margin: 80px 0;
}

.partnership-options h2 {
    text-align: center;
    color: #1a237e;
    font-size: 36px;
    margin-bottom: 60px;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.option-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.option-card h3 {
    color: #1a237e;
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 600;
}

.option-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.option-card li {
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
    color: #2c3e50;
    font-size: 16px;
}

.option-card li:last-child {
    border-bottom: none;
}

/* Contact Section */
.contact-section {
    max-width: 800px;
    margin: 80px auto;
    padding: 0 20px;
}

.contact-section h2 {
    text-align: center;
    color: #1a237e;
    font-size: 36px;
    margin-bottom: 20px;
}

.contact-section > p {
    text-align: center;
    color: #2c3e50;
    font-size: 18px;
    margin-bottom: 40px;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.form-group {
    margin-bottom: 25px;
}

label {
    display: block;
    margin-bottom: 8px;
    color: #1a237e;
    font-weight: 500;
}

input, select, textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    font-size: 16px;
    color: #2c3e50;
    transition: border-color 0.3s ease;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #1a237e;
}

textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    background: #1a237e;
    color: white;
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background: #0d47a1;
}

.form-note {
    text-align: center;
    color: #6c757d;
    font-size: 14px;
    margin-top: 20px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0 60px;
    }

    .hero-section h1 {
        font-size: 36px;
        margin-bottom: 30px;
    }

    .lead {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .emphasis {
        font-size: 24px;
    }

    .card-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .partner-card {
        padding: 25px;
    }

    .why-matters, .offering {
        padding: 20px;
    }

    .partnership-options {
        padding: 40px 0;
    }

    .options-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 25px;
    }
}

/* Print styles */
@media print {
    .hero-section {
        background: none;
        color: black;
        padding: 20px 0;
    }

    .emphasis {
        color: #1a237e;
    }

    .partner-card, .option-card, .contact-form {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

/* Responsive adjustments */
@media (max-width: 968px) {
    .levels-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .engagement-grid {
        grid-template-columns: 1fr;
    }
}