/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

svg {
max-width:100%;}

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

/* Section Styles */
.section {
    padding: 80px 0;
}

.section.dark {
    background-color: #2e1706;
    color: white;
}

.section.accent {
    background-color: #ff8324;
    color: white;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(46, 23, 6, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: #ff8324;
}

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

.nav-link {
    color: white;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    background-color: #ff8324;
    color: white;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: white;
    transition: 0.3s;
}

.nav-toggle.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-4px, 5px);
}

.nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: rgba(255, 131, 36, 0.2);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #2e1706;
    font-weight: bold;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: #666;
}

.cta-button {
    display: inline-block;
    background-color: #ff8324;
    color: white;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 131, 36, 0.3);
}

.cta-button:hover {
    background-color: #e6741f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 131, 36, 0.4);
}

.cta-button-white {
    display: inline-block;
    background-color: white;
    color: #ff8324;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-button-white:hover {
    background-color: #f8f8f8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Page Hero */
.page-hero {
    padding: 150px 0 80px 0;
    background: linear-gradient(135deg, #2e1706 0%, #4a2a0e 100%);
    color: white;
    text-align: center;
}

.page-hero .hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
}

.page-hero .hero-content p {
    font-size: 1.2rem;
    color: #ffc499;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin: 20px 0;
    color: #2e1706;
}

.section.dark .section-header h2 {
    color: white;
}

.section.accent .section-header h2 {
    color: white;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.section.dark .section-header p {
    color: #ccc;
}

.section.accent .section-header p {
    color: #ffc499;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

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

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

.info-card h3 {
    font-size: 1.5rem;
    margin: 20px 0 15px 0;
    color: #2e1706;
}

.info-card p {
    color: #666;
    line-height: 1.6;
}

/* Achievements Grid */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.achievement-card {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 131, 36, 0.1);
    border-radius: 10px;
    border: 2px solid rgba(255, 131, 36, 0.2);
}

.achievement-number {
    font-size: 3rem;
    font-weight: bold;
    color: #ff8324;
    margin-bottom: 10px;
}

.achievement-label {
    color: #ccc;
    font-size: 1.1rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

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

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

.service-card h3 {
    font-size: 1.5rem;
    margin: 20px 0 15px 0;
    color: #2e1706;
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
}

.price {
    display: inline-block;
    background-color: #ff8324;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
}

/* Offers Grid */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.offer-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.offer-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background-color: #2e1706;
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
}

.offer-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
}

.offer-card p {
    color: #ffc499;
    margin-bottom: 20px;
}

.offer-price {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.old-price {
    text-decoration: line-through;
    color: #ffc499;
    font-size: 1.1rem;
}

.new-price {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
}

/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.review-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.stars {
    color: #ff8324;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.review-card p {
    color: #666;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.reviewer {
    color: #2e1706;
    font-weight: bold;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.content-text h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #2e1706;
}

.content-text p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.team-card {
    background: rgba(255, 131, 36, 0.1);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid rgba(255, 131, 36, 0.2);
}

.team-avatar {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.team-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #ff8324;
}

.role {
    color: #ffc499;
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 1rem;
}

.team-card p {
    color: #ccc;
    line-height: 1.6;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

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

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

.value-card h3 {
    font-size: 1.5rem;
    margin: 20px 0 15px 0;
    color: #2e1706;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

/* Services Catalog */
.services-catalog {
    margin-top: 40px;
}

.service-category {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    overflow: hidden;
}

.category-header {
    background: linear-gradient(135deg, #ff8324 0%, #e6741f 100%);
    color: white;
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.category-header h2 {
    font-size: 2rem;
    margin: 0;
}

.services-list {
    padding: 30px;
}

.service-item {
    padding: 25px;
    border: 2px solid #f0f0f0;
    border-radius: 10px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-item:hover {
    border-color: #ff8324;
    box-shadow: 0 5px 15px rgba(255, 131, 36, 0.1);
}

.service-item h3 {
    font-size: 1.3rem;
    color: #2e1706;
    margin-bottom: 10px;
}

.service-rating {
    color: #ff8324;
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.service-item p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.service-features span {
    background-color: #f8f8f8;
    color: #2e1706;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    border: 1px solid #e0e0e0;
}

.service-price {
    color: #ff8324;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Contact Content */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #2e1706;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.contact-item h3 {
    font-size: 1.3rem;
    color: #2e1706;
    margin-bottom: 10px;
}

.contact-item p {
    color: #666;
    margin-bottom: 5px;
}

.contact-item a {
    color: #ff8324;
    font-weight: bold;
}

.contact-item a:hover {
    text-decoration: underline;
}

.small {
    font-size: 0.9rem;
    color: #999;
}

/* Contact Form */
.contact-form-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #2e1706;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: bold;
    color: #2e1706;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff8324;
    box-shadow: 0 0 5px rgba(255, 131, 36, 0.3);
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
    margin: 0;
}

.checkbox-group label {
    margin: 0;
    font-weight: normal;
    color: #666;
    line-height: 1.5;
}

.checkbox-group a {
    color: #ff8324;
    text-decoration: underline;
}

.submit-button {
    background-color: #ff8324;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.submit-button:hover {
    background-color: #e6741f;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 131, 36, 0.3);
}

/* Service Areas */
.service-areas {
    margin-top: 40px;
}

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

.area-item {
    background: rgba(255, 131, 36, 0.1);
    padding: 30px;
    border-radius: 10px;
    border: 2px solid rgba(255, 131, 36, 0.2);
}

.area-item h3 {
    font-size: 1.3rem;
    color: #ff8324;
    margin-bottom: 20px;
}

.area-item ul {
    list-style: none;
    padding: 0;
}

.area-item li {
    color: #ccc;
    padding: 5px 0;
    border-bottom: 1px solid rgba(255, 131, 36, 0.2);
}

.area-item li:last-child {
    border-bottom: none;
}

.area-note {
    background: rgba(255, 131, 36, 0.1);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #ff8324;
    color: #ccc;
    line-height: 1.6;
}

/* Section CTA */
.section-cta {
    text-align: center;
    margin-top: 50px;
}

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

.cta-content h2 {
    font-size: 2.5rem;
    margin: 20px 0;
    color: white;
}

.cta-content p {
    font-size: 1.2rem;
    color: #ffc499;
    margin-bottom: 30px;
}

/* Thanks Page */
.thanks-hero {
    padding: 150px 0 100px 0;
    text-align: center;
    background: linear-gradient(135deg, #ff8324 0%, #e6741f 100%);
    color: white;
}

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

.thanks-hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: #ffc499;
}

.thanks-content {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.thanks-content h2 {
    font-size: 2rem;
    color: #2e1706;
    margin-bottom: 20px;
}

.thanks-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.next-steps {
    background: #f8f8f8;
    padding: 30px;
    border-radius: 10px;
    margin-top: 30px;
}

.next-steps h3 {
    color: #2e1706;
    margin-bottom: 15px;
}

.next-steps ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.next-steps li {
    color: #666;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.next-steps li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff8324;
    font-weight: bold;
}

/* Legal Pages */
.legal-content {
    max-width: 800px;
    margin: 40px auto;
    line-height: 1.7;
}

.legal-content h2 {
    font-size: 2rem;
    color: #2e1706;
    margin: 40px 0 20px 0;
}

.legal-content h3 {
    font-size: 1.5rem;
    color: #2e1706;
    margin: 30px 0 15px 0;
}

.legal-content p {
    color: #666;
    margin-bottom: 20px;
}

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

.legal-content li {
    color: #666;
    margin-bottom: 10px;
}

.legal-content a {
    color: #ff8324;
    text-decoration: underline;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2e1706;
    color: white;
    padding: 20px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

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

.cookie-text h3 {
    color: #ff8324;
    margin-bottom: 10px;
}

.cookie-text p {
    color: #ccc;
    font-size: 0.9rem;
}

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

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background-color: #ff8324;
    color: white;
}

.cookie-btn.accept:hover {
    background-color: #e6741f;
}

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

.cookie-btn.necessary:hover {
    background-color: white;
    color: #2e1706;
}

.cookie-btn.settings {
    background-color: #666;
    color: white;
}

.cookie-btn.settings:hover {
    background-color: #555;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cookie-modal.show {
    opacity: 1;
    visibility: visible;
}

.cookie-modal-content {
    background: white;
    border-radius: 10px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: scale(0.8) translateY(-50px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.cookie-modal-header {
    padding: 25px 30px 15px 30px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-modal-header h3 {
    color: #2e1706;
    font-size: 1.4rem;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background-color: #f5f5f5;
    color: #2e1706;
}

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

.cookie-modal-body > p {
    color: #666;
    margin-bottom: 25px;
    font-size: 1rem;
}

.cookie-category {
    margin-bottom: 25px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    border-left: 4px solid #ff8324;
}

.cookie-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.cookie-toggle input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #ff8324;
}

.cookie-toggle label {
    color: #2e1706;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cookie-required {
    color: #ff8324;
    font-size: 0.85rem;
    font-weight: normal;
}

.cookie-description {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
    padding-left: 30px;
    line-height: 1.4;
}

.cookie-modal-footer {
    padding: 20px 30px 30px 30px;
    border-top: 1px solid #eee;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.cookie-modal-footer .cookie-btn {
    font-size: 0.9rem;
    padding: 12px 20px;
}

/* Footer */
.footer {
    background-color: #2e1706;
    color: white;
    padding: 60px 0 20px 0;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo span {
    font-size: 24px;
    font-weight: bold;
    color: #ff8324;
}

.footer-section h4 {
    color: #ff8324;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

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

.footer-section a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ff8324;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 131, 36, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #ff8324;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

.footer-links a {
    color: #ccc;
    font-size: 0.9rem;
}

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

.footer-bottom p {
    color: #999;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: #2e1706;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
    }

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

    .nav-toggle {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .page-hero .hero-content h1 {
        font-size: 2.2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .info-grid,
    .services-grid,
    .offers-grid,
    .reviews-grid,
    .team-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .cookie-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

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

    .cookie-modal-content {
        width: 95%;
        max-height: 85vh;
    }

    .cookie-modal-header {
        padding: 20px 20px 10px 20px;
    }

    .cookie-modal-header h3 {
        font-size: 1.2rem;
    }

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

    .cookie-category {
        padding: 15px;
        margin-bottom: 20px;
    }

    .cookie-modal-footer {
        padding: 15px 20px 25px 20px;
        flex-direction: column;
    }

    .cookie-modal-footer .cookie-btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .section {
        padding: 60px 0;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .page-hero .hero-content h1 {
        font-size: 1.8rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .info-card,
    .service-card,
    .review-card,
    .team-card,
    .value-card {
        padding: 20px;
    }

    .achievement-number {
        font-size: 2.5rem;
    }

    .cta-button,
    .cta-button-white,
    .submit-button {
        padding: 12px 24px;
        font-size: 16px;
    }
    body {
    word-break: break-word;}
}