.page-content {
    padding: 60px 0;
    background-color: #f6f8fa;
}

.page-header {
    margin-bottom: 40px;
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: 42px;
    margin-bottom: 30px;
}

.about-menu {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.about-menu-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    color: inherit;
}

.about-menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.about-menu-item h3 {
    font-size: 22px;
    color: var(--color-accent-green-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.about-menu-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.page-text {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    background: white;
    padding: 40px;
    border-radius: 12px;
}

.page-text p {
    margin-bottom: 20px;
}

.page-text h2 {
    font-size: 32px;
    margin: 40px 0 20px;
    font-family: var(--font-heading);
    color: var(--color-accent-green-dark);
}

.page-text h2:first-child {
    margin-top: 0;
}

.page-text ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.page-text li {
    margin-bottom: 10px;
}

.page-text a {
    color: #0075bc;
    text-decoration: none;
}

.page-text a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 32px;
    }

    .page-text {
        padding: 24px;
    }

    .page-text h2 {
        font-size: 26px;
    }
}
