/* 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.7;
    color: #1a1a1a;
    background-color: #fefefe;
}

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

a {
    color: inherit;
    text-decoration: none;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #fff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    text-align: center;
    font-size: 0.95rem;
}

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

.btn-cookie,
.btn-cookie-reject {
    padding: 0.65rem 1.5rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background-color 0.3s;
}

.btn-cookie {
    background-color: #4a7c59;
    color: #fff;
}

.btn-cookie:hover {
    background-color: #3d6649;
}

.btn-cookie-reject {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.btn-cookie-reject:hover {
    background-color: rgba(255,255,255,0.1);
}

/* Navigation */
.nav-minimal {
    padding: 2rem 1.5rem;
    position: sticky;
    top: 0;
    background-color: rgba(254, 254, 254, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

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

.logo {
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #1a1a1a;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 400;
    color: #444;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #1a1a1a;
}

/* Content Containers */
.content-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.content-medium {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.content-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Hero Section */
.hero-space {
    padding: 8rem 1.5rem 6rem;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.display-large {
    font-size: 4.5rem;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.subtitle-large {
    font-size: 1.4rem;
    font-weight: 300;
    color: #666;
    margin-bottom: 2.5rem;
    letter-spacing: 0.01em;
}

.hero-visual {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
}

/* CTA Buttons */
.cta-primary,
.cta-secondary,
.cta-inline {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s;
}

.cta-primary {
    background-color: #2c2c2c;
    color: #fff;
}

.cta-primary:hover {
    background-color: #1a1a1a;
    transform: translateY(-1px);
}

.cta-secondary {
    background-color: transparent;
    color: #2c2c2c;
    border: 1px solid #2c2c2c;
}

.cta-secondary:hover {
    background-color: #2c2c2c;
    color: #fff;
}

.cta-inline {
    background-color: transparent;
    color: #4a7c59;
    padding: 0.5rem 1.5rem;
    border: 1px solid #4a7c59;
    font-size: 0.95rem;
}

.cta-inline:hover {
    background-color: #4a7c59;
    color: #fff;
}

/* Sections */
.intro-minimal {
    padding: 6rem 1.5rem;
}

.intro-minimal h2 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.text-emphasis {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1.5rem;
}

.intro-minimal p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.2rem;
}

/* Story Section */
.story-section {
    padding: 8rem 1.5rem;
    background-color: #f9f9f9;
}

.story-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-text {
    flex: 1;
}

.story-text h3 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.story-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.2rem;
}

.story-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

/* Insight Block */
.insight-block {
    padding: 8rem 1.5rem;
    background-color: #2c2c2c;
    color: #fff;
}

.insight-quote {
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1.5rem;
    letter-spacing: 0.01em;
}

.insight-author {
    font-size: 1rem;
    color: #bbb;
    font-style: normal;
}

/* Problem Section */
.problem-amplify {
    padding: 8rem 1.5rem;
}

.problem-amplify h2 {
    font-size: 2.8rem;
    font-weight: 400;
    margin-bottom: 3rem;
    text-align: center;
    letter-spacing: -0.02em;
}

.problem-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 3rem;
}

.problem-item h4 {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
}

.problem-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

/* Philosophy Visual */
.philosophy-visual {
    padding: 0;
    margin: 6rem 0;
}

.philosophy-container {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.philosophy-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.philosophy-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.7));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 3rem;
    color: #fff;
}

.philosophy-overlay h3 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.philosophy-overlay p {
    font-size: 1.2rem;
    font-weight: 300;
    max-width: 600px;
}

/* Services Section */
.services-reveal {
    padding: 8rem 1.5rem;
    background-color: #fafafa;
}

.services-reveal h2 {
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    text-align: center;
    letter-spacing: -0.02em;
}

.services-intro {
    text-align: center;
    font-size: 1.15rem;
    color: #666;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background-color: #fff;
    padding: 3rem;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
    transition: all 0.3s;
}

.service-card:hover {
    border-color: #2c2c2c;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.service-card.featured {
    border: 2px solid #4a7c59;
    position: relative;
}

.service-card h3 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.service-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
}

.service-duration {
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 0.5rem;
}

.service-price {
    font-size: 2rem;
    font-weight: 600;
    color: #2c2c2c;
    margin: 1.5rem 0;
}

.btn-select {
    padding: 0.9rem 2rem;
    background-color: #4a7c59;
    color: #fff;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s;
    margin-top: 1rem;
}

.btn-select:hover {
    background-color: #3d6649;
    transform: translateY(-1px);
}

/* Testimonials */
.testimonial-section {
    padding: 8rem 1.5rem;
    background-color: #f5f5f5;
}

.testimonial {
    background-color: #fff;
    padding: 3rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid #4a7c59;
}

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.8;
    font-style: italic;
    color: #333;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #666;
    font-style: normal;
}

/* Form Section */
.form-section {
    padding: 8rem 1.5rem;
}

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

.form-container h2 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    text-align: center;
}

.form-intro {
    text-align: center;
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 3rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a7c59;
}

.btn-submit {
    padding: 1.1rem 2.5rem;
    background-color: #2c2c2c;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s;
    margin-top: 1rem;
}

.btn-submit:hover {
    background-color: #1a1a1a;
    transform: translateY(-1px);
}

/* Final CTA */
.final-cta {
    padding: 8rem 1.5rem;
    background-color: #2c2c2c;
    color: #fff;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.8rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.final-cta p {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    color: #ddd;
}

/* Footer */
.footer {
    padding: 4rem 1.5rem 2rem;
    background-color: #1a1a1a;
    color: #bbb;
}

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

.footer-logo {
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-size: 0.9rem;
    color: #888;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 0.9rem;
    color: #bbb;
    transition: color 0.3s;
}

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

.footer-copy {
    text-align: center;
    font-size: 0.85rem;
    color: #777;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    display: none;
}

.sticky-cta.show {
    display: block;
}

.sticky-btn {
    padding: 1rem 2rem;
    background-color: #4a7c59;
    color: #fff;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s;
}

.sticky-btn:hover {
    background-color: #3d6649;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

/* Page Hero */
.page-hero {
    padding: 6rem 1.5rem 4rem;
    text-align: center;
    background-color: #fafafa;
}

.page-hero h1 {
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.page-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    color: #666;
}

/* About Page */
.about-story {
    padding: 6rem 1.5rem;
}

.about-text h2 {
    font-size: 2.3rem;
    font-weight: 400;
    margin-bottom: 2rem;
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.5rem;
}

.about-image {
    margin-top: 3rem;
    border-radius: 8px;
    overflow: hidden;
}

.philosophy-section {
    padding: 6rem 1.5rem;
    background-color: #f9f9f9;
}

.philosophy-section h2 {
    font-size: 2.3rem;
    font-weight: 400;
    margin-bottom: 2rem;
    text-align: center;
}

.philosophy-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.5rem;
}

/* Team Section */
.team-section {
    padding: 6rem 1.5rem;
}

.team-section h2 {
    font-size: 2.3rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    text-align: center;
}

.team-intro {
    text-align: center;
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.team-member {
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.team-member h3 {
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.role {
    font-size: 0.95rem;
    color: #4a7c59;
    margin-bottom: 1rem;
    font-weight: 500;
}

.team-member p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

/* Values Section */
.values-section {
    padding: 6rem 1.5rem;
    background-color: #fafafa;
}

.values-section h2 {
    font-size: 2.3rem;
    font-weight: 400;
    margin-bottom: 2rem;
    text-align: center;
}

.values-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.values-list li {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
    padding-left: 2rem;
    position: relative;
}

.values-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #4a7c59;
    font-size: 1.5rem;
    line-height: 1.3;
}

/* CTA Section */
.cta-section {
    padding: 6rem 1.5rem;
    text-align: center;
    background-color: #2c2c2c;
    color: #fff;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.15rem;
    color: #ddd;
    margin-bottom: 2rem;
}

/* Services Page */
.services-detailed {
    padding: 6rem 1.5rem;
}

.services-intro-text {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.service-detail {
    background-color: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 3rem;
    margin-bottom: 3rem;
    transition: all 0.3s;
}

.service-detail:hover {
    border-color: #2c2c2c;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.featured-service {
    border: 2px solid #4a7c59;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
    position: relative;
}

.service-header h2 {
    font-size: 2rem;
    font-weight: 500;
}

.service-price-large {
    font-size: 2.2rem;
    font-weight: 600;
    color: #2c2c2c;
}

.badge {
    position: absolute;
    top: -1rem;
    right: 0;
    background-color: #4a7c59;
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.service-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 2rem;
}

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

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

.detail-item h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.detail-item p {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
}

/* Contact Page */
.contact-section {
    padding: 6rem 1.5rem;
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
}

.contact-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

.contact-item a {
    color: #4a7c59;
}

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

.contact-note {
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: 4px;
    margin-top: 2rem;
}

.contact-note p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.contact-form-wrapper {
    flex: 1;
}

.contact-form-wrapper h2 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.contact-form-wrapper p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 2rem;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 1.5rem;
    background-color: #fafafa;
}

.faq-section h2 {
    font-size: 2.3rem;
    font-weight: 400;
    margin-bottom: 3rem;
    text-align: center;
}

.faq-item {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border: 1px solid #e5e5e5;
}

.faq-item h3 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.faq-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

/* Thanks Page */
.thanks-section {
    padding: 8rem 1.5rem;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.thanks-content {
    text-align: center;
}

.thanks-content h1 {
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: #4a7c59;
}

.thanks-message {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
}

.thanks-service {
    margin: 2rem 0;
}

.service-selected {
    font-size: 1.1rem;
    color: #2c2c2c;
}

.thanks-next {
    margin: 3rem 0;
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.thanks-next h2 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-align: center;
}

.thanks-steps {
    list-style: decimal;
    padding-left: 1.5rem;
}

.thanks-steps li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 0.8rem;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.thanks-note {
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 3rem;
}

.thanks-note p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.thanks-note a {
    color: #4a7c59;
}

.thanks-note a:hover {
    text-decoration: underline;
}

/* Legal Pages */
.legal-page {
    padding: 4rem 1.5rem;
}

.legal-page h1 {
    font-size: 2.8rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.legal-updated {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 3rem;
}

.legal-page h2 {
    font-size: 1.8rem;
    font-weight: 500;
    margin: 2.5rem 0 1rem;
    color: #2c2c2c;
}

.legal-page h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin: 2rem 0 1rem;
    color: #333;
}

.legal-page h4 {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 1.5rem 0 0.8rem;
    color: #444;
}

.legal-page p {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1rem;
}

.legal-page ul,
.legal-page ol {
    margin: 1rem 0 1.5rem 1.5rem;
}

.legal-page li {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 0.5rem;
}

.legal-page a {
    color: #4a7c59;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .display-large {
        font-size: 2.5rem;
    }

    .subtitle-large {
        font-size: 1.1rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .nav-links a {
        font-size: 0.9rem;
    }

    .hero-space {
        padding: 4rem 1.5rem 3rem;
        min-height: auto;
    }

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

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

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
    }

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

    .page-subtitle {
        font-size: 1.1rem;
    }

    .contact-container {
        flex-direction: column;
        gap: 3rem;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .badge {
        position: static;
        display: inline-block;
        margin-top: 0.5rem;
    }

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

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

    .philosophy-container {
        height: 400px;
    }

    .philosophy-overlay {
        padding: 2rem;
    }

    .philosophy-overlay h3 {
        font-size: 1.8rem;
    }

    .philosophy-overlay p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 15px;
    }

    .logo {
        font-size: 1.2rem;
    }

    .display-large {
        font-size: 2rem;
    }

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

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