/* Sustainability page styles */
.sustainability-banner {
    background-color: #f5f5f5;
    padding: 60px 0;
    text-align: center;
}
.sustainability-banner h1 {
    font-size: 42px;
    color: #284878;
    margin-bottom: 30px;
    font-weight: 700;
}
.sustainability-banner p {
    font-size: 20px;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}
.sustainability-section {
    padding: 0px 0;
}
.sustainability-section h2 {
    font-size: 32px;
    color: #284878;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}
.sustainability-section h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}
.sustainability-section p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}
.sustainability-commitment {
    background-color: #284878;
    color: #fff;
    
    margin: 40px 0;
}
.sustainability-commitment h3 {
    font-size: 28px;
    color: #fff;
    padding: 50px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}
.sustainability-targets {
    background-color: #f9f9f9;
    padding: 50px 0;
}
.target-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}
.target-icon {
    flex: 0 0 80px;
    height: 80px;
    background-color: #284878;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: #fff;
    font-size: 32px;
    font-weight: bold;
}
.target-content {
    flex: 1;
}
.target-content h4 {
    font-size: 20px;
    color: #284878;
    margin-bottom: 10px;
    font-weight: 600;
}
.target-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
}
.sustainability-goals {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}
.goal-item {
    flex: 0 0 calc(25% - 20px);
    min-width: 250px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}
.goal-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.goal-item h4 {
    font-size: 18px;
    color: #284878;
    margin-bottom: 15px;
    font-weight: 600;
}
.goal-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
}
.sustainability-highlights {
    margin-bottom: 60px;
}
.highlights-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}
.highlight-card {
    flex: 0 0 calc(33.33% - 20px);
    min-width: 300px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}
.highlight-image {
    height: 200px;
    background-color: #eee;
    background-size: cover;
    background-position: center;
}
.highlight-content {
    padding: 25px;
}
.highlight-content h4 {
    font-size: 18px;
    color: #284878;
    margin-bottom: 10px;
    font-weight: 600;
}
.highlight-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}
.highlight-content .date {
    font-size: 13px;
    color: #999;
}
.highlight-content .read-more {
    display: inline-block;
    margin-top: 15px;
    color: #284878;
    font-weight: 600;
    text-decoration: none;
}
.contact-section {
    background-color: #f5f5f5;
    padding: 50px 0;
    margin-top: 60px;
}
.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
}
.contact-info {
    flex: 0 0 60%;
}
.contact-form {
    flex: 0 0 35%;
}
.report-section {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    margin: 40px 0;
}
.report-section h2 {
    text-align: left;
    margin-bottom: 20px;
}
.report-section p {
    margin-bottom: 30px;
}
.report-btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #284878;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s;
}
.report-btn:hover {
    background-color: #1d365a;
}
.certification-section {
    text-align: center;
    margin: 60px 0;
}
.certification-logo {
    max-width: 200px;
    margin: 0 auto 30px;
}

/* UN Goals Accordion Style */
.un-goals-container {
    margin: 40px 0;
}
.un-goal-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}
.un-goal-header {
    background-color: #edf2f7;
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s;
}
.un-goal-header:hover {
    background-color: #e2e8f0;
}
.un-goal-header h4 {
    font-size: 18px;
    color: #284878;
    font-weight: 600;
    margin: 0;
}
.un-goal-header .toggle-icon {
    color: #284878;
    font-size: 20px;
    transition: transform 0.3s;
}
.un-goal-header.active .toggle-icon {
    transform: rotate(180deg);
}
.un-goal-content {
    background-color: #f8fafc;
    padding: 20px 25px;
    display: none;
}
.un-goal-content.active {
    display: block;
}
.un-goal-content p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

@media (max-width: 992px) {
    .goal-item {
        flex: 0 0 calc(50% - 20px);
    }
    .highlight-card {
        flex: 0 0 calc(50% - 15px);
    }
    .contact-info, .contact-form {
        flex: 0 0 100%;
    }
}
@media (max-width: 768px) {
    .sustainability-banner h1 {
        font-size: 32px;
    }
    .sustainability-banner p {
        font-size: 18px;
    }
    .sustainability-section h2 {
        font-size: 28px;
    }
    .sustainability-section h3 {
        font-size: 22px;
    }
    .goal-item, .highlight-card {
        flex: 0 0 100%;
    }
} 