* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: #1a1a1a;
    line-height: 1.5;
}

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

/* Header */
.header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 50px;
    width: auto;
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 700;
    color: #FECC09;
    text-shadow: 1px 1px 0 #B86404;
}

.logo-text .ru-latin {
    font-family: 'Inter', sans-serif;
    letter-spacing: 0;
}

.contacts {
    display: flex;
    gap: 15px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-link.telegram {
    background: #0088cc;
    color: white;
}

.contact-link.max {
    background: #6f42c1;
    color: white;
}
.contact-link.phone {
    background: #28a745;
    color: white;
}

.contact-link:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #B86404 0%, #D4782C 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: #FECC09;
    color: #B86404;
}

.btn-primary:hover {
    background: #e6b800;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

/* Insurance Section */
.insurance {
    padding: 80px 0;
    background: #f8f9fa;
}

.insurance h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #B86404;
}

.insurance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.insurance-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.insurance-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    font-size: 3rem;
    color: #FECC09;
    margin-bottom: 20px;
}

.insurance-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #B86404;
}

.insurance-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.btn-card {
    background: #B86404;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-card:hover {
    background: #FECC09;
    color: #B86404;
    transform: translateY(-2px);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #B86404;
}

.contact > .container > p {
    color: #666;
    margin-bottom: 40px;
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FECC09;
    box-shadow: 0 0 0 3px rgba(254, 204, 9, 0.1);
}

.btn-submit {
    width: 100%;
    background: #FECC09;
    color: #B86404;
    font-weight: 700;
}

.contacts-direct {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.contacts-direct p {
    margin-bottom: 20px;
    color: #666;
}

.contact-link.large {
    padding: 12px 30px;
    font-size: 1.1rem;
    margin: 0 10px;
}

/* Footer */
.footer {
    background: #2c2c2c;
    color: #aaa;
    text-align: center;
    padding: 30px 0;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .insurance h2,
    .contact h2 {
        font-size: 2rem;
    }
    
    .insurance-grid {
        grid-template-columns: 1fr;
    }
    
    .contacts {
        width: 100%;
        justify-content: center;
    }
    
    .header .container {
        flex-direction: column;
    }
    
    .contact-link.large {
        display: inline-block;
        margin: 10px;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 80%;
    }
    
    .contacts-direct {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .contact-link.large {
        width: 80%;
        text-align: center;
        justify-content: center;
    }
}
/* Акцент для слогана */
.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}
/* Эффект пульсации для ключевых слов */
.highlight-word {
    display: inline-block;
    position: relative;
    color: #FECC09;
    animation: pulse 1.5s ease-in-out infinite;
    font-weight: 700;
}

@keyframes pulse {
    0% {
        text-shadow: 0 0 0 #FECC09;
        transform: scale(1);
    }
    50% {
        text-shadow: 0 0 15px #FECC09, 0 0 5px #FECC09;
        transform: scale(1.08);
    }
    100% {
        text-shadow: 0 0 0 #FECC09;
        transform: scale(1);
    }
}
/* Стили для согласия */
.consent-group {
    margin: 20px 0;
}

.consent-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.85rem;
    color: #555;
}

.consent-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #B86404;
}

.consent-label a {
    color: #B86404;
    text-decoration: none;
}

.consent-label a:hover {
    text-decoration: underline;
}
