/* Общие стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #efefef;
    color: #131313;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0;
}

.container {
    width: 100%;
    /* max-width: 1200px; */
    padding: 20px;
}

.block {
    width: 35%;
    text-align: left;
    margin-top: 50px;
}

.block_left_right {
    display: flex;
        width: 50%;
        flex-wrap: nowrap;
        justify-content: space-around;
        flex-direction: column;
        align-items: center;
}

.block_left_right_second {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
}

/* Стили для каждого блока */
.section {
    display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
        margin: 45px 0;
        /* border-bottom: 1px solid #333; */
        width: 100%;
}

.section img {
    width: 100%;
    max-width: 800px;
    /* margin-right: 10px;
    margin-left: 10px; */
}

.section-main {
    width: 100%;
    padding: 10px;
    text-align: center;
}

.section-content-main {
    width: 100%;
    padding: 10px;
    text-align: center;
    font-size: 3rem;

    h1 {
        font-weight: 300;
    }
}

.protoc {
    display: flex;
        flex-direction: row;
}

.section-footer {
    width: 100%;
    padding: 10px;
    text-align: center;
}

.section-content-footer h3 {
    width: 100%;
    padding: 10px;
    font-weight: 100;
    text-transform: uppercase;
}

.section-content {
    width: 100%;
    padding: 10px;
    text-align: left;
    
}

.section-content h1 {
    font-size: 15rem;
    margin-bottom: 10px;
    font-weight: 100;
}

.section-content h2 {
    font-size: 5rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 100;
    margin-top: 45px;
}

.section-content h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 100;
    text-align: center;
}

.section-content p {
    font-size: 1rem;
    font-weight: 100;
    line-height: 1.6;
    color: #131313;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.section-contact {
    /* margin-top: 50px; */
    width: 100%;
    padding-bottom: 30px;
    padding-top: 30px;
    /* margin-bottom: 50px; */
    background-color: #131313;
}

.section-contact img {
    width: 20%;
}

/* Кнопка */
.button {
    display: inline-block;
    padding: 10px 20px;
    color: #efefef;
    background-color: #131313;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 15px;
    transition: background-color 0.3s, color 0.3s;
}

.button:hover {
    background-color: #efefef;
    color: #131313;
}

/* Адаптивные стили */
@media (max-width: 768px) {
    .section {
        flex-direction: column;
    }

    .section-content, .section img {
        width: 100%;
        text-align: center;
    }

    .section-content h2 {
        font-size: 1.8rem;
    }

    .section-content p {
        font-size: 1rem;
    }
}

/* Стили для меню */
.menu {
    display: flex;
    justify-content: space-between;
    /* background-color: #000; */
    padding: 10px 0px 10px 0px;
    border-top: 1px solid #131313;
    border-bottom: 1px solid #131313;
    align-items: center;
}

.menu a {
    color: #131313;
    text-decoration: none;
    padding: 10px 0px;
    font-size: 1rem;
    font-weight: 400;
    transition: color 0.3s;
}

.menu a:hover {
    color: #ff6347; /* цвет при наведении */
}