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

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f5f5dc; /* Светло-бежевый фон */
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Заголовок */
.main-title {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
}

/* Желтый баннер */
.yellow-banner {
    background-color: #FFD700;
    padding: 25px 30px;
    margin-bottom: 50px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.yellow-banner p {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin: 0;
}

/* Контейнер для методов оплаты */
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* Отдельный метод оплаты */
.payment-method {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

/* Большие номера */
.method-number {
    position: absolute;
    left: -20px;
    top: 20px;
    font-size: 100px;
    font-weight: bold;
    color: #CCCCCC;
    opacity: 0.3;
    z-index: 1;
    line-height: 1;
}

/* Круглые иконки */
.method-icon {
    width: 120px;
    height: 120px;
    background-color: #FFEB3B;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.icon-symbol {
    font-size: 24px;
    margin-bottom: 8px;
    opacity: 0.8;
}

.icon-text {
    font-size: 14px;
    font-weight: bold;
    color: #000;
    line-height: 1.2;
}

/* Описание метода */
.method-description {
    flex: 1;
    padding-top: 20px;
}

.method-description p {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin: 0;
}

.method-description strong {
    font-weight: bold;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .container {
        padding: 20px 15px;
    }
    
    .main-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .yellow-banner {
        padding: 20px 15px;
        margin-bottom: 30px;
    }
    
    .yellow-banner p {
        font-size: 18px;
    }
    
    .payment-methods {
        gap: 40px;
    }
    
    .payment-method {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .method-number {
        position: static;
        font-size: 60px;
        margin-bottom: 10px;
        opacity: 0.2;
    }
    
    .method-icon {
        width: 100px;
        height: 100px;
        margin: 0 auto;
    }
    
    .icon-symbol {
        font-size: 20px;
    }
    
    .icon-text {
        font-size: 12px;
    }
    
    .method-description {
        padding-top: 0;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 24px;
    }
    
    .yellow-banner p {
        font-size: 16px;
    }
    
    .method-icon {
        width: 80px;
        height: 80px;
    }
    
    .icon-symbol {
        font-size: 18px;
    }
    
    .icon-text {
        font-size: 11px;
    }
} 