:root {
    --primary-color: #d4352a;
    --primary-dark: #b82e24;
    --secondary-color: #2d3e50;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-white);
}

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

h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    margin-bottom: 1rem;
    font-weight: 600;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

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

a:hover {
    color: var(--primary-dark);
}

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

ul {
    margin-bottom: 1rem;
}

li {
    margin-bottom: 0.5rem;
}

.header {
    background-color: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.logo:hover {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

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

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

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

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a2633 100%);
    color: var(--bg-white);
    padding: 5rem 0;
    text-align: center;
}

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

.hero-text {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.page-hero {
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 3rem 0;
    text-align: center;
}

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

.page-intro {
    font-size: 1.2rem;
    opacity: 0.9;
}

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-color);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-text {
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
}

.btn-text:hover {
    color: var(--primary-dark);
}

section {
    padding: 4rem 0;
}

.intro-section {
    background-color: var(--bg-light);
}

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

.intro-text {
    flex: 1;
}

.intro-visual {
    flex: 0 0 300px;
    text-align: center;
}

.intro-icon {
    max-width: 250px;
}

.values-section {
    background-color: var(--bg-white);
}

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

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

.value-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 250px;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.philosophy-section {
    background-color: var(--bg-light);
}

.philosophy-content {
    max-width: 800px;
    margin: 0 auto;
}

.philosophy-highlight {
    background-color: var(--bg-white);
    padding: 2rem;
    margin-top: 2rem;
    border-left: 4px solid var(--primary-color);
    font-size: 1.25rem;
    font-style: italic;
}

.featured-tours h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.tour-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.tour-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 280px;
    padding: 2rem;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: var(--transition);
}

.tour-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.tour-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.tour-header h3 {
    margin: 0;
}

.tour-duration {
    font-size: 0.875rem;
    color: var(--text-light);
    white-space: nowrap;
}

.stats-section {
    background-color: var(--secondary-color);
    color: var(--bg-white);
}

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

.stat-item {
    flex: 1 1 200px;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.125rem;
}

.testimonials-section {
    background-color: var(--bg-light);
}

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

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

.testimonial-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 280px;
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author strong {
    display: block;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    font-size: 0.875rem;
    color: var(--text-light);
}

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

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

.process-step {
    flex: 1 1 calc(50% - 1rem);
    min-width: 250px;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

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

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

.benefit-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

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

.knowledge-section {
    background-color: var(--bg-light);
}

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

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

.knowledge-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 8px;
}

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

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

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

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

.faq-question:hover {
    background-color: var(--bg-light);
}

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

.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: 1.25rem;
    background-color: var(--bg-light);
    margin: 0;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
    text-align: center;
}

.cta-content h2 {
    color: var(--bg-white);
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.footer {
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 3rem 0 1rem;
}

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

.footer-col {
    flex: 1 1 200px;
}

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

.footer-col ul {
    list-style: none;
    margin: 0;
}

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

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-col a:hover {
    color: var(--bg-white);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    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;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

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

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

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

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

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

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

.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-left: 2rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.modal-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.story-section {
    background-color: var(--bg-light);
}

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

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

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

.mission-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 250px;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.team-section {
    background-color: var(--bg-light);
}

.team-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.team-intro {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

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

.team-member {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 250px;
    padding: 1.5rem;
    background-color: var(--bg-white);
    border-radius: 8px;
}

.member-info h3 {
    margin-bottom: 0.25rem;
}

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

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

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

.approach-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

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

.expertise-section {
    background-color: var(--bg-light);
}

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

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

.expertise-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 8px;
    text-align: center;
}

.expertise-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
}

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

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

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

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

.timeline-year {
    flex-shrink: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.principles-section {
    background-color: var(--bg-light);
}

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

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

.principle-item {
    margin-bottom: 2rem;
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 8px;
}

.services-intro {
    background-color: var(--bg-light);
    text-align: center;
}

.section-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.125rem;
}

.services-list {
    background-color: var(--bg-white);
}

.service-item {
    max-width: 900px;
    margin: 0 auto 2rem;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.service-meta {
    color: var(--text-light);
    font-size: 0.875rem;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    flex-shrink: 0;
}

.service-details {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.9375rem;
}

.service-info {
    background-color: var(--bg-light);
}

.service-info h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.info-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 8px;
}

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

.comparison-grid {
    display: flex;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.comparison-col {
    flex: 1;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.comparison-list {
    list-style: none;
    margin: 0;
}

.comparison-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.comparison-list li:last-child {
    border-bottom: none;
}

.comparison-note {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.9375rem;
    color: var(--text-light);
}

.booking-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.booking-step {
    flex: 1 1 calc(50% - 1rem);
    min-width: 250px;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    text-align: center;
}

.contact-info {
    background-color: var(--bg-light);
}

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

.contact-main {
    flex: 2;
}

.contact-sidebar {
    flex: 1;
}

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

.contact-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: var(--bg-white);
    border-radius: 8px;
}

.contact-item h3 {
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
}

.contact-note {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.info-box {
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

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

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

.location-text {
    flex: 1;
}

.location-directions {
    flex: 1;
}

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

.direction-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.company-info-section {
    background-color: var(--bg-light);
}

.company-info-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

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

.company-data {
    margin-top: 2rem;
}

.data-item {
    margin-bottom: 1rem;
}

.data-item strong {
    display: block;
    margin-bottom: 0.25rem;
}

.booking-info h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.booking-content {
    max-width: 800px;
    margin: 0 auto;
}

.booking-checklist {
    margin: 1.5rem 0;
}

.visit-section {
    background-color: var(--bg-light);
}

.visit-content {
    max-width: 800px;
    margin: 0 auto;
}

.thankyou-section {
    padding: 5rem 0;
    text-align: center;
}

.thankyou-content {
    max-width: 700px;
    margin: 0 auto;
}

.thankyou-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 2rem;
}

.thankyou-text {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.thankyou-info {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    text-align: left;
}

.thankyou-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.next-steps {
    background-color: var(--bg-light);
}

.next-steps h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.tip-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 250px;
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 8px;
}

.legal-page {
    background-color: var(--bg-white);
}

.legal-intro {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.legal-section h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-section ul {
    margin-left: 1.5rem;
}

.cookie-table {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 5px;
    margin: 1rem 0;
}

.cookie-table h4 {
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
}

.cookie-table ul {
    list-style: none;
    margin: 0;
}

.cookie-table li {
    margin-bottom: 0.5rem;
}

.cookie-settings-box {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    margin: 2rem 0;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

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

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

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background-color: var(--bg-white);
        width: 100%;
        padding: 2rem;
        box-shadow: var(--shadow);
        transition: left 0.3s ease;
        gap: 1rem;
    }

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

    .menu-toggle {
        display: flex;
    }

    .intro-grid {
        flex-direction: column;
    }

    .intro-visual {
        flex: 1;
    }

    .values-grid,
    .tour-cards,
    .testimonials-grid,
    .process-steps,
    .knowledge-grid,
    .mission-grid,
    .team-grid,
    .expertise-grid,
    .tips-grid {
        flex-direction: column;
    }

    .value-card,
    .tour-card,
    .testimonial-card,
    .process-step,
    .knowledge-card,
    .mission-card,
    .team-member,
    .expertise-card,
    .tip-card {
        flex: 1 1 100%;
    }

    .stats-grid {
        flex-direction: column;
        gap: 1.5rem;
    }

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

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

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

    .footer-grid {
        flex-direction: column;
    }

    .contact-grid,
    .location-grid,
    .comparison-grid {
        flex-direction: column;
    }

    .service-header {
        flex-direction: column;
        gap: 0.5rem;
    }

    .service-price {
        align-self: flex-start;
    }

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

    .thankyou-actions .btn {
        width: 100%;
    }

    .timeline-item {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    section {
        padding: 2rem 0;
    }

    .hero {
        padding: 3rem 0;
    }

    .modal-buttons {
        flex-direction: column;
    }

    .modal-buttons .btn {
        width: 100%;
    }
}
