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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

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

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

ul {
    list-style: none;
}

button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

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

/* Header and Navigation */
.header {
    background: #1a1a1a;
    color: #ffffff;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: #e0e0e0;
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #ffffff;
    border-bottom-color: #d4af37;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    transition: all 0.3s ease;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 0;
        margin-top: 1rem;
        background: #2a2a2a;
        border-radius: 8px;
        overflow: hidden;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid #3a3a3a;
    }

    .nav-menu li:last-child a {
        border-bottom: none;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ffffff;
    padding: 5rem 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    color: #ecf0f1;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
    color: #ffffff;
    padding: 3rem 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: #d4af37;
    color: #1a1a1a;
}

.btn-primary:hover {
    background: #c29d2f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background: #2c3e50;
    color: #ffffff;
}

.btn-secondary:hover {
    background: #34495e;
    transform: translateY(-2px);
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-outline {
    background: transparent;
    border: 2px solid #2c3e50;
    color: #2c3e50;
}

.btn-outline:hover {
    background: #2c3e50;
    color: #ffffff;
}

/* Section Spacing */
section {
    padding: 4rem 0;
}

section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #1a1a1a;
}

.section-intro {
    text-align: center;
    font-size: 1.125rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

/* Philosophy Section */
.philosophy {
    background: #f8f9fa;
}

.philosophy-content {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

.philosophy-text {
    flex: 1;
    min-width: 300px;
}

.philosophy-text h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.philosophy-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.philosophy-icon {
    flex: 0 0 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.philosophy-icon img {
    width: 150px;
    height: 150px;
    opacity: 0.1;
}

/* Featured Service */
.featured-service {
    background: #ffffff;
}

.featured-grid {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

.featured-image {
    flex: 1;
    min-width: 300px;
}

.featured-image img {
    width: 100%;
    border-radius: 8px;
}

.featured-text {
    flex: 1;
    min-width: 300px;
}

.featured-text h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.featured-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.featured-text .btn {
    margin-top: 1.5rem;
}

/* Values Section */
.values {
    background: #f8f9fa;
}

.values-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.value-card {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.value-card img {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.value-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.value-card p {
    color: #555;
    line-height: 1.7;
}

/* Process Section */
.process {
    background: #ffffff;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: #d4af37;
    color: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

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

/* Stats Section */
.stats {
    background: #2c3e50;
    color: #ffffff;
}

.stats-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: space-around;
}

.stat {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #ecf0f1;
}

/* Testimonials */
.testimonials {
    background: #f8f9fa;
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #d4af37;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.testimonial-author {
    font-weight: 600;
    color: #555;
}

/* Expertise Section */
.expertise {
    background: #ffffff;
}

.expertise-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.expertise-item {
    flex: 1;
    min-width: 250px;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.expertise-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.expertise-item p {
    color: #555;
    line-height: 1.7;
}

/* FAQ Section */
.faq {
    background: #f8f9fa;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: 1.25rem;
    text-align: left;
    font-weight: 600;
    font-size: 1.05rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-icon {
    font-size: 1.5rem;
    color: #d4af37;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.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 1.25rem 1.25rem;
    color: #555;
    line-height: 1.7;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
    color: #ffffff;
    text-align: center;
}

.cta-content h2 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #ecf0f1;
}

/* Services Grid */
.services {
    background: #ffffff;
}

.services-intro {
    text-align: center;
    font-size: 1.125rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.services-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-icon {
    margin-bottom: 1.5rem;
}

.service-icon img {
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-card p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.service-price {
    font-weight: 700;
    font-size: 1.125rem;
    color: #d4af37;
    margin-top: 1rem;
}

/* Service Benefits */
.service-benefits {
    background: #f8f9fa;
}

.benefits-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.benefit-item {
    flex: 1;
    min-width: 250px;
    padding: 1.5rem;
}

.benefit-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.benefit-item p {
    color: #555;
    line-height: 1.7;
}

/* Service Process */
.service-process {
    background: #ffffff;
}

.process-list {
    max-width: 900px;
    margin: 0 auto;
}

.process-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.process-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.process-content p {
    color: #555;
    line-height: 1.7;
}

/* Comparison Table */
.comparison {
    background: #f8f9fa;
}

.comparison-table {
    max-width: 900px;
    margin: 0 auto;
}

.comparison-row {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: #ffffff;
    margin-bottom: 0.5rem;
    border-radius: 8px;
    align-items: center;
}

.comparison-feature {
    flex: 1;
    font-weight: 600;
    color: #1a1a1a;
}

.comparison-us {
    flex: 1;
    text-align: center;
    color: #27ae60;
    font-weight: 600;
}

.comparison-them {
    flex: 1;
    text-align: center;
    color: #e74c3c;
}

/* Contact Page */
.contact-info {
    background: #ffffff;
}

.contact-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-block {
    flex: 1;
    min-width: 300px;
}

.contact-block h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.contact-block p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #555;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item img {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.contact-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.contact-item p {
    color: #555;
    line-height: 1.7;
}

.contact-item a {
    color: #d4af37;
    font-weight: 600;
}

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

.directions h3 {
    font-size: 1.125rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

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

/* About Us Section */
.about-us {
    background: #f8f9fa;
}

.about-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #555;
}

/* Visit Info */
.visit-info {
    background: #ffffff;
}

.visit-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.visit-card {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.visit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.visit-card p {
    color: #555;
    line-height: 1.7;
}

/* Company Info */
.company-info {
    background: #f8f9fa;
}

.legal-info p {
    margin-bottom: 0.5rem;
    color: #555;
}

/* Story Section */
.story {
    background: #ffffff;
}

.story-content h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.story-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #555;
}

/* Timeline */
.milestones {
    background: #f8f9fa;
}

.timeline {
    max-width: 900px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.timeline-year {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: #d4af37;
    color: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
}

.timeline-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.timeline-content p {
    color: #555;
    line-height: 1.7;
}

/* Team Section */
.team {
    background: #ffffff;
}

.team-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.team-member {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.member-icon {
    margin-bottom: 1.5rem;
}

.member-icon img {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    border-radius: 50%;
}

.team-member h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.member-role {
    font-weight: 600;
    color: #d4af37;
    margin-bottom: 1rem;
}

.team-member p {
    color: #555;
    line-height: 1.7;
}

/* Philosophy Deep */
.philosophy-deep {
    background: #f8f9fa;
}

.philosophy-blocks {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.phil-block {
    flex: 1;
    min-width: 300px;
}

.phil-block h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.phil-block p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #555;
}

/* Commitment */
.commitment {
    background: #ffffff;
}

.commitment-list {
    max-width: 900px;
    margin: 0 auto;
}

.commitment-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.commitment-item img {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.commitment-text h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.commitment-text p {
    color: #555;
    line-height: 1.7;
}

/* Inspiration */
.inspiration {
    background: #f8f9fa;
}

.inspiration-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.inspiration-card {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: #ffffff;
    border-radius: 8px;
    border-top: 4px solid #d4af37;
}

.inspiration-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.inspiration-card p {
    color: #555;
    line-height: 1.7;
}

/* Thank You Page */
.thank-you {
    background: #f8f9fa;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thank-you-content {
    text-align: center;
    max-width: 600px;
    padding: 3rem;
}

.thank-you-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
}

.thank-you-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.thank-you-text {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #27ae60;
    font-weight: 600;
}

.thank-you-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #555;
}

.thank-you-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Legal Pages */
.legal-page {
    background: #ffffff;
    padding: 3rem 0;
}

.legal-intro {
    font-style: italic;
    color: #777;
    margin-bottom: 2rem;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    text-align: left;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #555;
}

.legal-content ul {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.legal-content ul li {
    list-style: disc;
    margin-bottom: 0.5rem;
    line-height: 1.7;
    color: #555;
}

.legal-content a {
    color: #d4af37;
    font-weight: 600;
}

.legal-content a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #e0e0e0;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h3 {
    color: #ffffff;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer-section p {
    line-height: 1.7;
    color: #b0b0b0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #b0b0b0;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    padding: 1rem;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    color: #999;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: #333;
}

.modal h2 {
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.cookie-options {
    margin-bottom: 2rem;
}

.cookie-option {
    margin-bottom: 1.5rem;
}

.cookie-option label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    cursor: pointer;
}

.cookie-option input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.cookie-option p {
    margin-top: 0.5rem;
    margin-left: 2rem;
    color: #555;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

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

    section h2 {
        font-size: 1.75rem;
    }

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

    .step,
    .timeline-item,
    .process-item,
    .commitment-item,
    .contact-item {
        flex-direction: column;
    }

    .philosophy-icon {
        display: none;
    }

    .comparison-row {
        flex-direction: column;
        align-items: stretch;
    }

    .comparison-feature {
        text-align: center;
        padding-bottom: 0.5rem;
        border-bottom: 2px solid #f0f0f0;
    }

    .comparison-us,
    .comparison-them {
        padding: 0.5rem 0;
    }

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

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
}

@media (min-width: 769px) {
    section {
        padding: 5rem 0;
    }

    .hero {
        padding: 6rem 0;
    }

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

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