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

:root {
    --primary-color: #8B1538;
    --secondary-color: #2C1810;
    --accent-color: #D4A574;
    --text-dark: #1a1a1a;
    --text-light: #f5f5f5;
    --bg-light: #ffffff;
    --bg-gray: #f8f8f8;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

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

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

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--secondary-color);
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.75rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

ul {
    list-style-position: inside;
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
    color: #555;
}

/* Header and Navigation */
.header {
    background-color: var(--bg-light);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo img {
    height: 40px;
}

.nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--bg-light);
    box-shadow: var(--shadow);
    list-style: none;
}

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

.nav-menu li {
    border-bottom: 1px solid var(--border-color);
}

.nav-menu a {
    display: block;
    padding: 1rem 20px;
    color: var(--text-dark);
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    background-color: var(--bg-gray);
    color: var(--primary-color);
}

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

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

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

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: #6d0f2a;
    color: var(--text-light);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--text-light);
}

.btn-secondary:hover {
    background-color: #1a0f09;
    color: var(--text-light);
}

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

/* Hero Section */
.hero {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
}

.hero-content {
    text-align: center;
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.hero-text {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-visual img {
    margin: 0 auto;
}

/* Page Hero */
.page-hero {
    padding: 3rem 0 2rem;
    background-color: var(--bg-gray);
    text-align: center;
}

/* Sections */
section {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    margin-bottom: 0.5rem;
}

.section-header p {
    color: #555;
    font-size: 1.125rem;
}

/* Philosophy Section */
.philosophy {
    background-color: var(--bg-light);
}

.content-blocks {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.block {
    text-align: center;
    padding: 2rem;
    background-color: var(--bg-gray);
    border-radius: 8px;
}

.block img {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

.block h3 {
    margin-bottom: 0.75rem;
}

/* Collection Grid */
.collection-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.collection-item {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.item-visual {
    margin-bottom: 1.5rem;
}

.item-visual img {
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
}

/* Benefits Section */
.benefits-section {
    background-color: var(--bg-gray);
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit {
    display: flex;
    gap: 1.5rem;
}

.benefit-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.benefit-text h3 {
    margin-bottom: 0.5rem;
}

/* Testimonials */
.testimonials {
    background-color: var(--bg-light);
}

.testimonial-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial {
    background-color: var(--bg-gray);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.quote-content {
    margin-bottom: 1.5rem;
}

.quote-content p {
    font-style: italic;
    font-size: 1.125rem;
    color: #333;
}

.testimonial-author strong {
    display: block;
    color: var(--secondary-color);
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #666;
    font-size: 0.875rem;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-light);
    padding: 3rem 0;
}

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

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Process Section */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    text-align: center;
    padding: 1.5rem;
}

.step-icon img {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
}

.step h3 {
    margin-bottom: 0.75rem;
}

/* Knowledge Section */
.knowledge-section {
    background-color: var(--bg-gray);
}

.knowledge-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.knowledge-item {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.knowledge-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* FAQ Section */
.faq-section {
    background-color: var(--bg-light);
}

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

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.25rem;
    background-color: var(--bg-gray);
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #eeeeee;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary-color);
}

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

.faq-answer p {
    padding: 1.25rem;
    margin: 0;
}

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

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

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--accent-color) 0%, #c89960 100%);
    padding: 4rem 0;
    text-align: center;
}

.cta-content h2 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

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

/* Story Section */
.story-section {
    padding: 4rem 0;
}

.content-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.content-visual img {
    width: 100%;
    border-radius: 8px;
}

/* Values Grid */
.values-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-card {
    background-color: var(--bg-gray);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.value-icon img {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

/* Team Grid */
.team-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.team-member {
    background-color: var(--bg-gray);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.member-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--accent-color);
}

.member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Approach Section */
.approach-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.approach-item {
    background-color: var(--bg-gray);
    padding: 2rem;
    border-radius: 8px;
}

.approach-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline-item {
    margin-bottom: 2rem;
    position: relative;
}

.timeline-year {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    display: inline-block;
    font-weight: 700;
    margin-bottom: 1rem;
}

.timeline-content h3 {
    margin-bottom: 0.5rem;
}

/* Industries Grid */
.industries-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.industry-item {
    background-color: var(--bg-gray);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

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

/* Trust Section */
.trust-content {
    max-width: 800px;
    margin: 0 auto;
}

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.trust-point {
    background-color: var(--bg-gray);
    padding: 2rem;
    border-radius: 8px;
}

.trust-point h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Services Page */
.services-intro {
    background-color: var(--bg-gray);
    padding: 2rem 0;
}

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

.service-card {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
}

.service-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-icon img {
    width: 60px;
    height: 60px;
}

.service-title {
    flex: 1;
}

.service-title h2 {
    margin-bottom: 0.5rem;
}

.service-price {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 700;
}

.service-body p {
    margin-bottom: 1.5rem;
}

.service-features {
    list-style-type: none;
    padding-left: 0;
}

.service-features li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

/* Service Benefits */
.service-benefits {
    background-color: var(--bg-gray);
}

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

.benefit-item {
    text-align: center;
    padding: 1.5rem;
}

.benefit-item img {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

/* Comparison */
.comparison-table {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.comparison-column {
    background-color: var(--bg-gray);
    padding: 2rem;
    border-radius: 8px;
}

.comparison-column h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.comparison-column ul {
    list-style-type: none;
}

.comparison-column li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
}

.comparison-column li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Steps Grid */
.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-item {
    background-color: var(--bg-gray);
    padding: 2rem;
    border-radius: 8px;
    display: flex;
    gap: 1.5rem;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-item h3 {
    margin-bottom: 0.5rem;
}

/* Contact Page */
.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background-color: var(--bg-gray);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.contact-icon img {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

.contact-card h2 {
    margin-bottom: 1rem;
}

.contact-note {
    font-size: 0.875rem;
    color: #666;
    font-style: italic;
}

/* About Location */
.location-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.location-text h3 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.location-text h3:first-child {
    margin-top: 0;
}

.location-visual img {
    width: 100%;
    border-radius: 8px;
}

/* Company Info */
.company-info-section {
    background-color: var(--bg-gray);
}

.company-details {
    max-width: 800px;
    margin: 0 auto;
}

/* Reasons Grid */
.reasons-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.reason-item {
    background-color: var(--bg-gray);
    padding: 2rem;
    border-radius: 8px;
}

.reason-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Thank You Page */
.thank-you-section {
    padding: 4rem 0;
    text-align: center;
}

.thank-you-content {
    max-width: 600px;
    margin: 0 auto;
}

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

.thank-you-info {
    background-color: var(--bg-gray);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.thank-you-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.thank-you-actions .btn {
    width: 100%;
}

/* Next Steps */
.next-steps {
    background-color: var(--bg-gray);
}

.step-card {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 2rem;
}

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

.step-card a {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 600;
}

/* Legal Pages */
.legal-content {
    padding: 2rem 0;
}

.legal-text {
    max-width: 800px;
    margin: 0 auto;
}

.legal-text h2 {
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
}

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

.legal-text h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-text ul {
    list-style-position: outside;
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-text ul li {
    margin-bottom: 0.5rem;
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    color: var(--text-light);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

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

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

.footer-section a {
    color: var(--text-light);
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--secondary-color);
    color: var(--text-light);
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    flex: 1;
}

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

/* Cookie Modal */
.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

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

.modal-content {
    background-color: var(--bg-light);
    border-radius: 8px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h3 {
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #666;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
}

.modal-body {
    padding: 1.5rem;
}

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

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

.cookie-option input[type="checkbox"] {
    margin-top: 0.25rem;
    cursor: pointer;
}

.cookie-option p {
    margin: 0;
    font-size: 0.875rem;
    color: #666;
}

.modal-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
    text-align: right;
}

/* Tablet and Desktop Styles */
@media (min-width: 768px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.25rem;
    }

    h3 {
        font-size: 1.75rem;
    }

    /* Navigation */
    .nav-menu {
        display: flex;
        flex-direction: row;
        position: static;
        box-shadow: none;
        background: none;
        gap: 0.5rem;
    }

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

    .nav-menu a {
        padding: 0.5rem 1rem;
    }

    .mobile-toggle {
        display: none;
    }

    /* Hero */
    .hero {
        padding: 5rem 0;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .hero-text {
        font-size: 1.25rem;
    }

    /* Grids */
    .content-blocks {
        flex-direction: row;
    }

    .collection-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .collection-item {
        flex: 1;
        min-width: 280px;
    }

    .testimonial-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .testimonial {
        flex: 1;
        min-width: 280px;
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-card {
        flex: 1;
        min-width: 250px;
    }

    .team-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .team-member {
        flex: 1;
        min-width: 250px;
    }

    .industries-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .industry-item {
        flex: 1;
        min-width: 250px;
    }

    .benefits-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

    .comparison-table {
        flex-direction: row;
    }

    .comparison-column {
        flex: 1;
    }

    .steps-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .step-item {
        flex: 1;
        min-width: 250px;
    }

    .contact-grid {
        flex-direction: row;
    }

    .contact-card {
        flex: 1;
    }

    .reasons-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .reason-item {
        flex: 1;
        min-width: 250px;
    }

    .knowledge-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .knowledge-item {
        flex: 1;
        min-width: 280px;
    }

    .process-steps {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

    /* Content Layout */
    .content-layout {
        flex-direction: row;
        align-items: center;
    }

    .content-text {
        flex: 1;
    }

    .content-visual {
        flex: 1;
    }

    .location-content {
        flex-direction: row;
        gap: 3rem;
    }

    .location-text {
        flex: 1.5;
    }

    .location-visual {
        flex: 1;
    }

    /* Footer */
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-section {
        flex: 1;
    }

    /* Cookie Banner */
    .cookie-content {
        flex-direction: row;
        align-items: center;
    }

    .cookie-buttons {
        flex-wrap: nowrap;
    }

    /* Thank You */
    .thank-you-actions {
        flex-direction: row;
        justify-content: center;
    }

    .thank-you-actions .btn {
        width: auto;
    }
}

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

    .hero {
        padding: 6rem 0;
    }
}