/* Общие стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f8f4e5;
    color: #333;
    line-height: 1.6;
}

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

a {
    text-decoration: none;
    color: #d35400;
    transition: color 0.3s;
}

a:hover {
    color: #a04000;
}

/* Навигация */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    padding: 15px 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo a {
    font-size: 24px;
    font-weight: bold;
    color: #d35400;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: #333;
    font-weight: 500;
}

.nav-links a:hover, .nav-links a.active {
    color: #d35400;
}

/* Стили для FAQ */
.faq-section {
    padding: 40px 0;
}

.faq-section h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #d35400;
}

.faq-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    color: #666;
}

.faq-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.faq-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 25px;
}

.faq-item h2 {
    color: #d35400;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0e0d0;
    font-size: 1.5rem;
}

.faq-question {
    margin-bottom: 25px;
}

.faq-question:last-child {
    margin-bottom: 0;
}

.faq-question h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
    position: relative;
    padding-left: 20px;
}

.faq-question h3::before {
    content: "●";
    color: #d35400;
    position: absolute;
    left: 0;
    font-size: 0.8rem;
    top: 5px;
}

.faq-question p {
    color: #555;
    line-height: 1.7;
}

.faq-cta {
    text-align: center;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.faq-cta h2 {
    color: #d35400;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.faq-cta p {
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    background-color: #d35400;
    color: #fff;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #a04000;
    color: #fff;
}

/* Подвал */
footer {
    background-color: #333;
    color: #fff;
    padding: 40px 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 20px;
}

.footer-logo h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #d35400;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
}

.footer-links a:hover {
    color: #d35400;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon img {
    width: 30px;
    height: 30px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.social-icon img:hover {
    opacity: 1;
}

/* Адаптивность */
@media (min-width: 768px) {
    .faq-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .navbar {
        flex-direction: column;
        padding: 15px;
    }
    
    .nav-links {
        margin-top: 15px;
    }
    
    .nav-links li {
        margin-left: 15px;
        margin-right: 15px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
} 