/* Основные настройки */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #ffffff;
    padding: 30px 0;
    /*min-height: 100vh;
    display: flex;
    align-items: center;*/
}

/* Логотип */
.logo-wrapper {
	margin-top: 15px;
    margin-bottom: 15px;
}

.logo {
    max-height: 100px;
    width: auto;
    display: inline-block;
}

/* Заголовки */
.main-title {
    font-weight: 700;
    font-size: 36px;
    color: #267dd3;
    margin-top: 10px;
    margin-bottom: 5px;
}

.subtitle {
    font-weight: 400;
    font-size: 20px;
    color: #666;
    margin-bottom: 30px;
}

/* Блоки с информацией */
.info-block {
    background-color: #267dd3;
    color: #ffffff;
    border-radius: 15px;
    padding: 25px 30px;
    margin-bottom: 20px;
    min-height: 220px;
    box-shadow: 0 4px 15px rgba(38, 125, 211, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(38, 125, 211, 0.4);
}

.block-title {
    font-weight: 700;
    font-size: 22px;
    margin-top: 0;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.block-title i {
    margin-right: 10px;
}

/* Списки в блоках */
.custom-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.custom-list li {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
    padding: 3px 0;
}

.custom-list li i {
    margin-right: 10px;
    font-size: 14px;
    opacity: 0.8;
}

/* Блок контактов */
.contacts-block {
    background-color: #f8f9fa;
    border-radius: 15px;
    padding: 25px 30px;
    margin: 20px 0 15px;
    border: 1px solid #e9ecef;
}

.contacts-title {
    font-weight: 700;
    font-size: 24px;
    color: #267dd3;
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
}

.contacts-title i {
    margin-right: 10px;
}

.contact-item {
    font-size: 16px;
    color: #333;
    padding: 8px 0;
    text-align: center;
}

.contact-item i {
    color: #267dd3;
    width: 25px;
    font-size: 18px;
    margin-right: 8px;
}

/* Социальные сети */
.social-block {
    margin-top: 15px;
    padding: 15px 0;
}

.social-link {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    color: #267dd3;
    background: #f8f9fa;
    padding: 10px 25px;
    margin: 0 8px 8px 0;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #267dd3;
}

.social-link i {
    margin-right: 8px;
    font-size: 20px;
}

.social-link:hover {
    background: #267dd3;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(38, 125, 211, 0.3);
}

.social-link:active {
    transform: translateY(0);
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    body {
        padding: 15px 0;
    }
    
    .main-title {
        font-size: 26px;
    }
    
    .subtitle {
        font-size: 16px;
    }
    
    .info-block {
        padding: 20px;
        min-height: auto;
    }
    
    .block-title {
        font-size: 19px;
    }
    
    .custom-list li {
        font-size: 14px;
    }
    
    .contact-item {
        font-size: 14px;
    }
    
    .social-link {
        font-size: 14px;
        padding: 8px 18px;
        margin: 0 5px 8px 0;
    }
    
    .logo {
        max-height: 70px;
    }
}

@media (max-width: 480px) {
	
	.logo-wrapper {
	margin-top: 30px;
    margin-bottom: 15px;
}
    .main-title {
        font-size: 22px;
    }
    
    .subtitle {
        font-size: 14px;
    }
    
    .info-block {
        padding: 15px;
    }
    
    .block-title {
        font-size: 17px;
    }
    
    .custom-list li {
        font-size: 13px;
        line-height: 1.6;
    }
    
    .social-link {
        font-size: 13px;
        padding: 6px 14px;
        display: inline-block;
        width: 100%;
        text-align: center;
        margin-right: 0;
    }
    
    .contact-item {
        font-size: 13px;
    }
}