/* ГЛОБАЛЬНЫЕ СТИЛИ ДЛЯ ВСЕХ БЛОКОВ */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
body {
background: white;
color: #2d3436;
line-height: 1.6;
}
/* Общие стили для всех блоков */
.app-container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
.seo-banner {
background: linear-gradient(135deg, rgba(74, 156, 109, 0.1) 0%, rgba(74, 156, 109, 0.05) 100%);
border-radius: 24px;
padding: 40px;
margin-bottom: 30px;
text-align: center;
}
.seo-title {
font-size: 36px;
font-weight: 800;
margin-bottom: 15px;
color: #2d3436;
line-height: 1.2;
}
.seo-subtitle {
font-size: 18px;
color: #6c757d;
max-width: 800px;
margin: 0 auto 20px;
}
.seo-keywords {
display: flex;
justify-content: center;
gap: 10px;
margin-top: 25px;
flex-wrap: wrap;
}
.keyword-tag {
background: white;
color: #4A9C6D;
padding: 8px 16px;
border-radius: 50px;
font-size: 14px;
font-weight: 600;
border: 2px solid rgba(74, 156, 109, 0.2);
}
.content-section {
background: #f8f9fa;
border-radius: 24px;
padding: 60px;
margin-bottom: 40px;
margin-top: 20px;
}
.section-title {
font-size: 32px;
font-weight: 700;
margin-bottom: 30px;
color: #2d3436;
display: flex;
align-items: center;
gap: 15px;
}
.section-title i {
color: #4A9C6D;
font-size: 28px;
}
.section-text {
font-size: 18px;
color: #495057;
margin-bottom: 40px;
line-height: 1.7;
}
.highlight-text {
background: white;
border-left: 4px solid #4A9C6D;
padding: 25px;
border-radius: 0 16px 16px 0;
margin: 40px 0;
font-size: 18px;
font-weight: 500;
color: #2d3436;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.action-buttons {
display: flex;
gap: 20px;
margin-top: 50px;
flex-wrap: wrap;
justify-content: center;
}
.action-btn {
padding: 18px 32px;
border-radius: 12px;
border: none;
font-size: 16px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
display: flex;
align-items: center;
gap: 10px;
min-width: 300px;
justify-content: center;
text-decoration: none;
}
.action-btn.tilda-btn {
background: linear-gradient(135deg, #4A9C6D 0%, #3a7c55 100%);
color: white;
border: none;
text-align: center;
display: inline-flex;
align-items: center;
justify-content: center;
}
.btn-primary {
background: linear-gradient(135deg, #4A9C6D 0%, #3a7c55 100%);
color: white;
}
.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 10px 25px rgba(74, 156, 109, 0.3);
}
.btn-secondary {
background: white;
color: #2d3436;
border: 2px solid #e9ecef;
}
.btn-secondary:hover {
background: #f8f9fa;
border-color: #4A9C6D;
transform: translateY(-2px);
}
/* Адаптивность */
@media (max-width: 992px) {
.app-container {
padding: 15px;
}
.content-section {
padding: 40px 30px;
}
.seo-title {
font-size: 28px;
}
.section-title {
font-size: 28px;
}
.action-btn {
min-width: 250px;
}
}
@media (max-width: 768px) {
.content-section {
padding: 30px 20px;
}
.seo-title {
font-size: 24px;
}
.section-title {
font-size: 24px;
}
.section-text {
font-size: 16px;
}
.action-btn {
min-width: 100%;
}
}