/* Общие стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Шапка */
header {
    padding: 30px 0;
    text-align: center;
    border-bottom: 1px solid #eaeaea;
}

.logo h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #2c3e50;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Основной контент */
main {
    padding: 50px 0;
}

section {
    margin-bottom: 60px;
}

h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
}

p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

/* Герой-секция */
.hero {
    text-align: center;
    padding: 40px 0;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.hero h2 {
    color: #3498db;
    font-size: 2.2rem;
    margin-bottom: 25px;
}

.hero p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.8;
}

/* Секция услуг */
.services {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.services ul {
    list-style-type: none;
    max-width: 800px;
    margin: 0 auto;
}

.services li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 1.1rem;
    position: relative;
    padding-left: 30px;
}

.services li:before {
    content: "•";
    color: #3498db;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: 8px;
}

.services li:last-child {
    border-bottom: none;
}

/* Секция "Скоро здесь" */
.coming-soon {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.coming-soon ul {
    list-style-type: none;
    max-width: 800px;
    margin: 20px auto;
}

.coming-soon li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 1.1rem;
    position: relative;
    padding-left: 30px;
}

.coming-soon li:before {
    content: "→";
    color: #3498db;
    position: absolute;
    left: 0;
    top: 10px;
}

.coming-soon li:last-child {
    border-bottom: none;
}

/* Цитата */
.quote {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.quote p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1.5rem;
    font-style: italic;
    margin: 0;
}

/* Подвал */
footer {
    padding: 40px 0;
    background-color: #2c3e50;
    color: white;
    text-align: center;
    border-radius: 10px 10px 0 0;
}

.contact-info {
    margin-bottom: 20px;
}

.contact-info h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.contact-info p {
    margin-bottom: 8px;
}

.contact-info a {
    color: #00fcec;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: #5dade2;
    text-decoration: underline;
}

.copyright {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Адаптивность */
@media (max-width: 768px) {
    .logo h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .hero p, .services li, .coming-soon li {
        font-size: 1rem;
    }
    
    .quote p {
        font-size: 1.2rem;
    }
    
    .services, .coming-soon {
        padding: 25px;
    }
}