/* Community & Connect Section */
.community-connect-section {
    background: #fff;
    padding: 2.5rem 0 2rem 0;
}
.community-connect-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
}
.community-card {
    background: #fff;
    border-radius: 1.2rem;
    box-shadow: 0 2px 8px rgba(166, 82, 63, 0.08);
    padding: 2rem 1.5rem;
    flex: 1 1 320px;
    min-width: 280px;
    max-width: 500px;
    margin-bottom: 1rem;
}
.community-card-green {
    border-left: 6px solid #1E5359;
}

/* Section Card: Unleash Potentials */
.section-card-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 3rem auto 2.5rem auto;
    max-width: 1100px;
    background: #fff;
    border-radius: 1.2rem;
    box-shadow: 0 2px 8px rgba(166, 82, 63, 0.08);
    overflow: hidden;
}
.section-card-grid-img {
    flex: 1 1 320px;
    min-width: 220px;
    background-size: cover;
    background-position: center;
    min-height: 220px;
}
.section-card-grid-content {
    flex: 2 1 400px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.section-card-headline {
    color: #1e5359;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.section-card-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.section-card-btn {
    display: inline-block;
    background: #1e5359;
    color: #fff;
    padding: 0.8rem 2.2rem;
    border-radius: 0.7rem;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    margin-top: 1.2rem;
    transition: background 0.2s;
}
.section-card-btn:hover {
    background: #3a767d;
}

/* Partners Section */
.partners-section {
    background: #f9f9f9;
    padding: 2.5rem 0 2rem 0;
}
.partners-header {
    text-align: center;
    margin-bottom: 2rem;
}
.partners-header h2 {
    color: #1E5359;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.partners-header p {
    color: #888;
    font-size: 1.1rem;
}
.partners-logos-card {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}
.partner-logo {
    width: 120px;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(166, 82, 63, 0.10);
}

@media (max-width: 900px) {
    .disclaimer-header {
        margin-top: 70px;
    }
    .community-connect-container, .section-card-grid {
        flex-direction: column;
        align-items: stretch;
    }
    .section-card-grid-img {
        min-height: 180px;
    }
    .section-card-grid-content {
        padding: 2rem 1rem;
    }
}

/* Disclaimer Page Main Header */
.disclaimer-header h2 {
    color: #1e5359;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

.disclaimer-section-title {
    color: #1e5359;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Disclaimer Page Paragraphs */
.disclaimer-content p {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #222;
    margin-bottom: 1.2rem;
}
