.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.page-content {
    min-height: 60vh;
    padding: 60px 0;
}

.page-header {
    text-align: center;
    margin-bottom: 64px;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 18px;
    color: var(--text-light);
}

.content-block {
    max-width: 900px;
    margin: 0 auto 48px;
}

.content-block h2 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 24px;
    text-align: center;
}

.content-block p {
    font-size: 18px;
    line-height: 1.5;
    color: var(--text-light);
    margin-bottom: 20px;
    text-align: center;
}

.content-block ul {
    text-align: left;
    max-width: 700px;
    margin: 0 auto 20px;
}

.content-block li {
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-light);
    margin-bottom: 8px;
}

.content-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin: 48px 0;
}

.content-with-image.reverse {
    direction: rtl;
}

.content-with-image.reverse > * {
    direction: ltr;
}

.content-text h2 {
    text-align: left;
}

.content-text p {
    text-align: left;
}

.content-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 32px;
}

.value-card {
    text-align: center;
    padding: 32px 24px;
    background: var(--bg-light);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.value-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.value-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.value-card p {
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-light);
    text-align: center;
}

.tech-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 32px;
}

.tech-item {
    text-align: center;
    padding: 24px;
}

.tech-icon {
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
}

.tech-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.tech-item p {
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-light);
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 32px;
}

.team-member {
    text-align: center;
    padding: 24px;
    background: var(--white);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.member-avatar {
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
}

.team-member h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.member-role {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 12px !important;
}

.team-member p:not(.member-role) {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-light);
    text-align: center;
}

.cta-section {
    text-align: center;
    margin-top: 32px;
}

.cta-button {
    display: inline-block;
    padding: 16px 32px;
    margin: 0 8px 16px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background: var(--primary-dark);
}

.cta-button.secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-button.secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.empty-content {
    background: var(--bg-light);
    border: 2px dashed var(--border-color);
    border-radius: 8px;
    padding: 64px 32px;
    text-align: center;
}

.empty-content p {
    font-size: 16px;
    color: var(--text-light);
}

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

    .page-subtitle {
        font-size: 16px;
    }

    .content-block h2 {
        font-size: 24px;
    }

    .content-block p {
        font-size: 16px;
    }

    .content-with-image {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .content-with-image.reverse {
        direction: ltr;
    }

    .content-text h2,
    .content-text p {
        text-align: center;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .tech-showcase {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }
}
