
.page-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
}


.section {
    padding: 4rem 0;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 2rem;
    text-align: center;
}


.history {
    background-color: var(--white);
}

.history-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.history-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text);
}

.history-text p {
    margin-bottom: 1.5rem;
}

.history-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.history-image img {
    width: 100%;
    height: auto;
    display: block;
}


.values {
    background-color: var(--background);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-block {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-top: 4px solid var(--primary);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.value-block h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.value-block p {
    color: var(--text-light);
    line-height: 1.7;
}


.who-for {
    background-color: var(--white);
}

.who-for-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text);
}

.who-for-content > p {
    margin-bottom: 1.5rem;
}

.who-for-list {
    list-style: none;
    padding-left: 0;
    margin: 2rem 0;
}

.who-for-list li {
    padding: 1rem;
    margin-bottom: 0.8rem;
    background-color: var(--background);
    border-left: 4px solid var(--secondary);
    border-radius: 4px;
    color: var(--text);
}

.who-for-content > p:last-child {
    margin-top: 2rem;
    font-style: italic;
    color: var(--text-light);
}


.responsible {
    background-color: var(--background);
}

.responsible-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text);
}

.responsible-content > p {
    margin-bottom: 1.5rem;
}

.responsible-list {
    list-style: none;
    padding-left: 0;
    margin: 2rem 0;
}

.responsible-list li {
    padding: 1rem;
    margin-bottom: 0.8rem;
    background-color: var(--white);
    border-left: 4px solid var(--primary);
    border-radius: 4px;
    color: var(--text);
}

.responsible-content > p:last-child {
    margin-top: 2rem;
}


@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .history-content {
        grid-template-columns: 1fr;
    }
    
    .history-image {
        order: -1;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}
