:root {
    --primary-color: #0064c8;
    --secondary-color: #00487e;
    --accent-color: #4ba3ff;
    --light-bg: #f7f9fc;
    --dark-text: #2c3e50;
    --light-text: #ffffff;
    --gray-text: #5c6b7a;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--light-bg);
}

.page-container {
    max-width: 1100px;
    margin: 0 auto;
    background-color: white;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2rem;
    text-align: center;
    position: relative;
}

.logo {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.tagline {
    font-size: 1.2rem;
    font-weight: 400;
    font-style: italic;
    opacity: 0.9;
}

.section {
    padding: 1.5rem 2rem;
}

.section-title {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-title i {
    font-size: 1.6rem;
}

.icon-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1.5rem 0;
}

.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 130px;
}

.icon-circle {
    width: 70px;
    height: 70px;
    /*background-color: var(--accent-color);*/
    background-color: white;
    color: white;
    border-radius: 50%;
    border: #fd4f18 solid 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.icon-text {
    font-size: 0.9rem;
    font-weight: 600;
}

.process-flow {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 120px;
    max-width: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 2;
    margin-bottom: 1rem;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.step-title {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.step-desc {
    font-size: 0.8rem;
    color: var(--gray-text);
}

.process-flow::before {
    content: "";
    position: absolute;
    top: 25px;
    left: 10%;
    right: 10%;
    height: 2px;
    background-color: var(--accent-color);
    z-index: 1;
}

.themes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.theme-item {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.theme-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.theme-title {
    font-size: 0.9rem;
    font-weight: 600;
}

.audience-section {
    background-color: var(--light-bg);
    border-radius: 8px;
    padding: 1.5rem;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.audience-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.audience-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.audience-title {
    font-weight: 600;
    font-size: 0.9rem;
}

.impact-points {
    background-color: white;
    border-left: 4px solid var(--accent-color);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
}

.impact-point {
    margin-bottom: 0.7rem;
    position: relative;
    padding-left: 1.5rem;
}

.impact-point::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 1.5rem;
    line-height: 1;
}

.collaborate-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
    padding: 2rem;
}

.collaborate-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.contact-info {
    font-size: 1.1rem;
    margin: 1rem 0;
}

.footer {
    /*background-color: var(--dark-text);*/
    /*background-color: var(#c5d7e0);*/
    background-color: #c5d7e0;
    color: #086586;
    text-align: center;
    padding: 1.5rem;
    font-size: 0.9rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .process-flow::before {
        display: none;
    }

    .process-step {
        margin-bottom: 2rem;
    }
}

/* Font Awesome style simulation */
.fas, .fab {
    font-family: Arial, sans-serif;
    font-weight: normal;
}
/* Elegant Partners Section Styling */
.partners-section {
    background-color: #f9fbfd;
    border-radius: 8px;
    padding: 30px;
    margin: 30px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.partners-intro {
    text-align: center;
    margin-bottom: 30px;
    color: #1a4e66;
    font-size: 18px;
}

.partners-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.partner-category h4 {
    color: #1a4e66;
    border-bottom: 2px solid #16a085;
    padding-bottom: 10px;
    margin-bottom: 20px;
    display: inline-block;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 15px;
}

.partner-card {
    background: white;
    border-radius: 8px;
    padding: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.partner-logo {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.partner-logo img {
    max-width: 120px;
    max-height: 60px;
    object-fit: contain;
}

.partner-name {
    font-weight: 500;
    color: #2c3e50;
}

.partner-description {
    color: #5d6d7e;
    font-style: italic;
    text-align: center;
    font-size: 15px;
    margin-top: 5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .partner-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }

    .partner-card {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .partner-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
}
