:root {
    --primary-dark: #1a1612;
    --secondary-dark: #2d2620;
    --terracotta: #c67b5c;
    --sage: #8a9a7b;
    --warm-beige: #d4c4b0;
    --clay: #b8856a;
    --accent-terracotta: #e89b7e;
    --accent-sage: #a4b894;
    --light-beige: #e8dfd2;
    --background-dark: #0f0d0a;
    --card-background: #242019;
    --overlay: rgba(26, 22, 18, 0.95);
}

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

body {
    font-family: 'Barlow', sans-serif;
    background-color: var(--background-dark);
    color: var(--light-beige);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'PT Serif', serif;
    font-weight: 700;
    color: var(--warm-beige);
}

.iti {
  width: 100%;
}

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

.header-main {
    background-color: var(--primary-dark);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: var(--light-beige);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--terracotta);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--terracotta);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--light-beige);
    transition: all 0.3s ease;
}

.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../images/hero-bg.jpg') center/cover no-repeat;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--overlay) 0%, rgba(45, 38, 32, 0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-title {
    font-size: 56px;
    margin-bottom: 30px;
    color: var(--warm-beige);
    line-height: 1.2;
}

.typed-text {
    color: var(--terracotta);
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    color: var(--light-beige);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--terracotta);
    color: var(--background-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(198, 123, 92, 0.3);
}

.cta-button:hover {
    background-color: var(--accent-terracotta);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(198, 123, 92, 0.4);
}

.about-section,
.services-section,
.benefits-section,
.content-section,
.packages-section,
.knowledge-section,
.tips-section,
.faq-section,
.contacts-main-section {
    padding: 100px 0;
}

.section-title {
    font-size: 42px;
    margin-bottom: 30px;
    color: var(--warm-beige);
}

.section-title.text-center {
    text-align: center;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: var(--sage);
    max-width: 700px;
    margin: 0 auto 60px;
}

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

.section-text {
    padding-right: 20px;
}

.text-content {
    font-size: 17px;
    margin-bottom: 20px;
    color: var(--light-beige);
}

.section-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.content-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    background-color: var(--card-background);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.service-image-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image {
    transform: scale(1.1);
}

.service-content {
    padding: 30px;
}

.service-icon {
    font-size: 40px;
    color: var(--terracotta);
    margin-bottom: 20px;
}

.service-title {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--warm-beige);
}

.service-description {
    font-size: 16px;
    color: var(--light-beige);
    line-height: 1.6;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.benefit-card {
    background-color: var(--card-background);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.benefit-image-container {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 20px;
}

.benefit-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.benefit-icon {
    font-size: 50px;
    color: var(--sage);
    margin-bottom: 20px;
}

.benefit-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--warm-beige);
}

.benefit-text {
    font-size: 16px;
    color: var(--light-beige);
    line-height: 1.6;
}

.contact-form-section {
    padding: 100px 0;
    background-color: var(--secondary-dark);
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 50px;
}

.form-intro {
    font-size: 18px;
    color: var(--sage);
    margin-top: 20px;
}

.contact-form {
    background-color: var(--card-background);
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

.form-label {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 500;
    color: var(--warm-beige);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 15px;
    background-color: var(--secondary-dark);
    border: 2px solid var(--clay);
    border-radius: 5px;
    color: var(--light-beige);
    font-size: 16px;
    font-family: 'Barlow', sans-serif;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--terracotta);
}

.form-textarea {
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 14px;
    color: var(--light-beige);
}

.form-checkbox {
    margin-right: 10px;
    margin-top: 3px;
    cursor: pointer;
    width: 18px;
    height: 18px;
    accent-color: var(--terracotta);
}

.link-accent {
    color: var(--terracotta);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.link-accent:hover {
    color: var(--accent-terracotta);
}

.submit-button {
    width: 100%;
    padding: 16px;
    background-color: var(--terracotta);
    color: var(--background-dark);
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-button:hover {
    background-color: var(--accent-terracotta);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(198, 123, 92, 0.4);
}

.map-section {
    padding: 100px 0;
    background-color: var(--primary-dark);
}

.map-wrapper {
    margin: 50px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.contact-info-card {
    background-color: var(--card-background);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
}

.contact-icon {
    font-size: 40px;
    color: var(--terracotta);
    margin-bottom: 20px;
}

.contact-info-title {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--warm-beige);
}

.contact-info-text {
    font-size: 16px;
    color: var(--light-beige);
}

.footer {
    background-color: var(--primary-dark);
    padding: 60px 0 30px;
    border-top: 2px solid var(--clay);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
}

.footer-title {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--warm-beige);
}

.footer-text {
    font-size: 14px;
    color: var(--sage);
    line-height: 1.6;
    margin-bottom: 10px;
}

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

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

.footer-link {
    color: var(--sage);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--terracotta);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--clay);
    color: var(--sage);
    font-size: 14px;
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--card-background);
    padding: 25px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-text {
    color: var(--light-beige);
    font-size: 15px;
    flex: 1;
}

.cookie-link {
    color: var(--terracotta);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn-accept {
    background-color: var(--terracotta);
    color: var(--background-dark);
}

.cookie-btn-accept:hover {
    background-color: var(--accent-terracotta);
}

.cookie-btn-settings {
    background-color: var(--sage);
    color: var(--background-dark);
}

.cookie-btn-settings:hover {
    background-color: var(--accent-sage);
}

.cookie-btn-reject {
    background-color: transparent;
    color: var(--light-beige);
    border: 2px solid var(--clay);
}

.cookie-btn-reject:hover {
    background-color: var(--clay);
}

.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 10001;
    align-items: center;
    justify-content: center;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background-color: var(--card-background);
    border-radius: 10px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-modal-header {
    padding: 25px;
    border-bottom: 2px solid var(--clay);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-modal-header h3 {
    font-size: 24px;
    color: var(--warm-beige);
}

.cookie-modal-close {
    background: none;
    border: none;
    color: var(--light-beige);
    font-size: 30px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.cookie-modal-close:hover {
    color: var(--terracotta);
}

.cookie-modal-body {
    padding: 25px;
}

.cookie-category {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--clay);
}

.cookie-category:last-child {
    border-bottom: none;
}

.cookie-category-header {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.cookie-category-header h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--warm-beige);
}

.cookie-category-header p {
    font-size: 14px;
    color: var(--sage);
}

.cookie-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
    flex-shrink: 0;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--secondary-dark);
    transition: 0.3s;
    border-radius: 34px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: var(--light-beige);
    transition: 0.3s;
    border-radius: 50%;
}

input:checked + .cookie-slider {
    background-color: var(--terracotta);
}

input:checked + .cookie-slider:before {
    transform: translateX(24px);
}

input:disabled + .cookie-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-modal-footer {
    padding: 25px;
    border-top: 2px solid var(--clay);
}

.page-hero {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    text-align: center;
}

.page-title {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--warm-beige);
}

.page-subtitle {
    font-size: 20px;
    color: var(--sage);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.package-card {
    background-color: var(--card-background);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.package-card.featured {
    border: 3px solid var(--terracotta);
}

.package-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--terracotta);
    color: var(--background-dark);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
}

.package-header {
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--primary-dark) 100%);
    padding: 40px 30px;
    text-align: center;
}

.package-title {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--warm-beige);
}

.package-price {
    font-size: 36px;
    font-weight: 700;
    color: var(--terracotta);
}

.package-content {
    padding: 40px 30px;
}

.package-features {
    list-style: none;
    margin-bottom: 30px;
}

.package-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--clay);
    color: var(--light-beige);
    display: flex;
    align-items: center;
    gap: 15px;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features i {
    color: var(--sage);
    font-size: 18px;
}

.package-description {
    font-size: 15px;
    color: var(--sage);
    line-height: 1.6;
}

.faq-container {
    max-width: 900px;
    margin: 60px auto 0;
}

.faq-item {
    background-color: var(--card-background);
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: none;
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: var(--warm-beige);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--secondary-dark);
}

.faq-question i {
    color: var(--terracotta);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: var(--light-beige);
    line-height: 1.7;
}

.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--primary-dark) 100%);
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--warm-beige);
}

.cta-text {
    font-size: 18px;
    color: var(--sage);
    margin-bottom: 40px;
}

.knowledge-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.knowledge-card {
    background-color: var(--card-background);
    padding: 40px 30px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.knowledge-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.knowledge-icon {
    font-size: 50px;
    color: var(--sage);
    margin-bottom: 20px;
}

.knowledge-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--warm-beige);
}

.knowledge-text {
    font-size: 16px;
    color: var(--light-beige);
    line-height: 1.6;
}

.tips-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.tip-card {
    background-color: var(--card-background);
    padding: 40px;
    border-radius: 10px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.tip-number {
    position: absolute;
    top: -20px;
    left: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--terracotta);
    color: var(--background-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.tip-title {
    font-size: 22px;
    margin-bottom: 15px;
    margin-top: 30px;
    color: var(--warm-beige);
}

.tip-text {
    font-size: 16px;
    color: var(--light-beige);
    line-height: 1.6;
}

.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contacts-info {
    padding-right: 20px;
}

.contact-details {
    margin-top: 40px;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-detail-icon {
    width: 50px;
    height: 50px;
    background-color: var(--terracotta);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-icon i {
    font-size: 24px;
    color: var(--background-dark);
}

.contact-detail-title {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--warm-beige);
}

.contact-detail-text {
    font-size: 16px;
    color: var(--light-beige);
    line-height: 1.6;
}

.contact-detail-subtext {
    font-size: 14px;
    color: var(--sage);
    margin-top: 5px;
}

.office-image-container {
    margin-top: 40px;
    border-radius: 10px;
    overflow: hidden;
}

.office-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.legal-content-section {
    padding: 100px 0;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--card-background);
    padding: 60px;
    border-radius: 10px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--terracotta);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--warm-beige);
}

.legal-content p {
    font-size: 16px;
    color: var(--light-beige);
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-content li {
    font-size: 16px;
    color: var(--light-beige);
    line-height: 1.8;
    margin-bottom: 10px;
}

.cookie-settings-button {
    margin: 30px 0;
    padding: 14px 35px;
    background-color: var(--terracotta);
    color: var(--background-dark);
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-settings-button:hover {
    background-color: var(--accent-terracotta);
    transform: translateY(-2px);
}

.thanks-section {
    padding: 150px 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.thanks-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.thanks-icon {
    font-size: 100px;
    color: var(--sage);
    margin-bottom: 30px;
}

.thanks-title {
    font-size: 48px;
    margin-bottom: 25px;
    color: var(--warm-beige);
}

.thanks-text {
    font-size: 20px;
    color: var(--light-beige);
    margin-bottom: 20px;
    line-height: 1.7;
}

.thanks-subtext {
    font-size: 16px;
    color: var(--sage);
    margin-bottom: 50px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
}

.thanks-button {
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.thanks-button.primary {
    background-color: var(--terracotta);
    color: var(--background-dark);
}

.thanks-button.primary:hover {
    background-color: var(--accent-terracotta);
    transform: translateY(-2px);
}

.thanks-button.secondary {
    background-color: transparent;
    color: var(--sage);
    border: 2px solid var(--sage);
}

.thanks-button.secondary:hover {
    background-color: var(--sage);
    color: var(--background-dark);
}

.thanks-contact-info {
    background-color: var(--card-background);
    padding: 40px;
    border-radius: 10px;
}

.thanks-contact-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--warm-beige);
}

.thanks-contact-info p {
    font-size: 16px;
    color: var(--light-beige);
    margin-bottom: 10px;
}

@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        background-color: var(--primary-dark);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        transition: left 0.3s ease;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-grid,
    .contacts-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-grid,
    .benefits-grid,
    .packages-grid,
    .knowledge-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tips-container {
        grid-template-columns: 1fr;
    }

    .cookie-content {
        flex-direction: column;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }

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

    .services-grid,
    .benefits-grid,
    .packages-grid,
    .knowledge-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 30px;
    }

    .legal-content {
        padding: 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .thanks-title {
        font-size: 36px;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .thanks-button {
        width: 100%;
    }

    .page-title {
        font-size: 36px;
    }
}