* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}












.promo {
    background-image: url('foto1.jpg'); /* Замените на путь к вашей фотографии */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

/* Затемнение фона для лучшей читаемости текста */
.promo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Полупрозрачный чёрный слой */
    z-index: 1;
}

.promo-content {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.promo h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.promo p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}




.cta-button {
    background-color: #ff6b35;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #e55a2b;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .promo h1 {
        font-size: 2rem;
    }
    
    .promo p {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .promo h1 {
        font-size: 1.5rem;
    }
    
    .promo p {
        font-size: 0.9rem;
    }
}

