
.agreement-section {
    padding: 80px 0;
    background: white;
    min-height: 70vh;
}

.agreement-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.agreement-text {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    font-family: 'Arial', sans-serif;
}

.agreement-text h1 {
    font-family: 'Kumar One', serif;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #000;
    text-align: center;
}

.agreement-text h3 {
    font-family: 'Kumar One', serif;
    font-size: 1.5rem;
    margin: 30px 0 15px 0;
    color: #000;
    font-weight: bold;
}

.agreement-text p {
    margin-bottom: 15px;
    text-align: justify;
}

.agreement-text .date {
    margin-top: 40px;
    font-style: italic;
    color: #666;
    text-align: center;
    font-weight: bold;
}

/* Адаптивность */
@media (max-width: 900px) {
    .agreement-section {
        padding: 50px 0;
    }
    
    .agreement-text h1 {
        font-size: 2rem;
    }
    
    .agreement-text h3 {
        font-size: 1.3rem;
    }
    
    .agreement-text {
        font-size: 15px;
    }
}

@media (max-width: 600px) {
    .agreement-section {
        padding: 30px 0;
    }
    
    .agreement-content {
        padding: 0 15px;
    }
    
    .agreement-text h1 {
        font-size: 1.8rem;
    }
    
    .agreement-text h3 {
        font-size: 1.2rem;
    }
    
    .agreement-text {
        font-size: 14px;
        line-height: 1.6;
    }
}