/* Сброс стилей */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #ffffff;
    color: #000000;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Хэдер */
.header {
    padding: 1.5rem 5%;
    border-bottom: 1px solid #e0e0e0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 48px;          /* Подстройте под размер вашего логотипа */
    width: auto;
    display: block;
}

/* Основной контент */
.main {
    flex: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 5%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Текстовый блок */
.content-text {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 3rem;
    letter-spacing: -0.01em;
}

.content-text p {
    margin-bottom: 1rem;
}

.content-text p:last-child {
    margin-bottom: 0;
}

/* Кнопки */
.buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

.btn {
    display: inline-block;
    padding: 0.9rem 2.5rem;
    border-radius: 40px;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 2px solid #000000;
    cursor: pointer;
    background: transparent;
    color: #000000;
}

.btn-primary {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
}

.btn-primary:hover {
    background: #ffffff;
    color: #000000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background: transparent;
    color: #000000;
}

.btn-secondary:hover {
    background: #000000;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Футер */
.footer {
    padding: 1.5rem 5%;
    text-align: center;
    border-top: 1px solid #e0e0e0;
    color: #5a5a5a;
    font-size: 0.9rem;
}

/* Адаптация для мобильных */
@media (max-width: 600px) {
    .main {
        padding: 2rem 5%;
    }
    
    .content-text {
        font-size: 1.3rem;
    }
    
    .buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
}