:root {
    --primary-color: #2c3e50;
    --secondary-color: #1a1a1a;
    --accent-gold: #d4af37;
    --accent-green: #27ae60;
    --text-color: #333333;
    --bg-light: #f9f9f9;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --transition: all 0.3s ease;
}

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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-white);
}

h1,
h2,
h3,
h4 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.btn {
    display: inline-block;
    background-color: var(--accent-gold);
    color: var(--bg-white);
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 14px;
}

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

.section-padding {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 0 auto 50px;
}

header {
    background-color: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
}

.logo span {
    color: var(--accent-gold);
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: var(--primary-color);
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--accent-gold);
}

#hero {
    margin-top: 70px;
    background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)), url('../img/hero.png');
    background-size: cover;
    background-position: center;
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-align: center;
    padding: 120px 20px;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content h1 {
    color: var(--bg-white);
    font-size: 42px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
}

.hero-icons {
    margin-top: 30px;
    font-size: 24px;
    color: var(--accent-gold);
}

.hero-icons i {
    margin: 0 15px;
}

#about {
    background-color: var(--bg-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    background-color: #ddd;
    min-height: 300px;
    object-fit: cover;
}

#importance {
    background-color: var(--bg-light);
}

.importance-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.importance-list i {
    color: var(--accent-green);
    margin-right: 15px;
    margin-top: 5px;
}

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

.card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-gold);
}

.card-icon {
    font-size: 36px;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.steps-list {
    list-style: none;
    counter-reset: step-counter;
    margin-top: 30px;
}

.steps-list li {
    position: relative;
    padding-left: 50px;
    margin-bottom: 20px;
}

.steps-list li::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 35px;
    height: 35px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    font-weight: bold;
}

.info-disclaimer {
    background-color: #f0f0f0;
    padding: 15px;
    border-left: 4px solid var(--accent-gold);
    margin-top: 30px;
    font-size: 14px;
    color: #555;
}

#advantages {
    background-color: var(--secondary-color);
    color: var(--bg-white);
}

#advantages .section-title {
    color: var(--bg-white);
}

#advantages .section-subtitle {
    color: #bbb;
}

#advantages .card {
    background-color: #2c3e50;
    border: none;
    color: var(--bg-white);
}

#advantages .card h3 {
    color: var(--accent-gold);
}

#target {
    background-color: var(--bg-light);
}

.accordion-item {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 10px;
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 20px;
    background: none;
    border: none;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    color: var(--primary-color);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}

.accordion-content p {
    padding-bottom: 20px;
    color: #555;
}

.active .accordion-content {
    max-height: 200px;
}

.accordion-header i {
    transition: var(--transition);
}

.active .accordion-header i {
    transform: rotate(180deg);
}

.review-card {
    text-align: center;
}

.review-avatar {
    width: 60px;
    height: 60px;
    background-color: #ddd;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background-color: var(--accent-green);
    font-size: 24px;
}

.review-city {
    color: #888;
    font-size: 14px;
    margin-bottom: 10px;
    display: block;
}

.blog-img {
    width: 100%;
    height: 180px;
    background-color: #eee;
    margin-bottom: 15px;
    object-fit: cover;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info i {
    color: var(--accent-gold);
    width: 25px;
    margin-right: 10px;
}

.contact-info p {
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input,
textarea,
select {
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    width: 100%;
    font-family: inherit;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
}

.success-message {
    display: none;
    background-color: var(--accent-green);
    color: white;
    padding: 10px;
    border-radius: 4px;
    text-align: center;
}

footer {
    background-color: var(--secondary-color);
    color: #bbb;
    padding: 50px 0 20px;
    font-size: 14px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--bg-white);
    margin-bottom: 20px;
}

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

.footer-col a:hover {
    color: var(--accent-gold);
}

.disclaimer {
    border-top: 1px solid #444;
    padding-top: 20px;
    margin-top: 20px;
    text-align: justify;
    font-size: 12px;
    line-height: 1.5;
    color: #777;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .about-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .section-title {
        font-size: 26px;
    }
}

.page {
    padding: 120px 0;
    background-color: var(--bg-white);
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.page h1 {
    color: var(--primary-color);
    margin-bottom: 40px;
    font-size: 32px;
    border-bottom: 2px solid var(--accent-gold);
    padding-bottom: 15px;
    display: inline-block;
}

.page h2 {
    color: var(--secondary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 22px;
}

.page p {
    margin-bottom: 15px;
    color: #555;
    text-align: justify;
}

.page ul {
    margin-bottom: 15px;
    padding-left: 20px;
    color: #555;
}

.page li {
    margin-bottom: 8px;
}

.page .last-updated {
    margin-top: 50px;
    font-style: italic;
    color: #888;
    font-size: 14px;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.alert-box {
    background-color: #fdf2ce;
    border-left: 5px solid var(--accent-gold);
    padding: 15px;
    margin: 20px 0;
    color: #5a4a10;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookie-table th,
.cookie-table td {
    border: 1px solid var(--border-color);
    padding: 12px;
    text-align: left;
    font-size: 14px;
}

.cookie-table th {
    background-color: var(--bg-light);
    color: var(--primary-color);
}