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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #fafafa;
}

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

a {
    color: #2d5a3d;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1a3524;
}

/* Navigation - Minimal Premium Style */
.nav-minimal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(250, 250, 250, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #e0e0e0;
}

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

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

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

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: #4a4a4a;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #2d5a3d;
}

/* Hero Section - Minimal Premium */
.hero-minimal {
    margin-top: 80px;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    padding: 4rem 2rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 800px;
    margin-bottom: 3rem;
}

.hero-minimal h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 3rem;
    max-width: 600px;
}

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

.hero-image img {
    width: 100%;
    object-fit: cover;
}

/* Buttons */
.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2d5a3d;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-primary:hover {
    background-color: #1a3524;
    color: #ffffff;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2d5a3d;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #1a3524;
    color: #ffffff;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: #2d5a3d;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid #2d5a3d;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Intro Section */
.intro-spacious {
    padding: 8rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.intro-block h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.intro-block p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4a4a4a;
}

/* Process Section */
.process-vertical {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.process-header {
    margin-bottom: 5rem;
}

.process-label {
    display: inline-block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #2d5a3d;
    margin-bottom: 1rem;
}

.process-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: #1a1a1a;
}

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

.step-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: #e0e0e0;
    letter-spacing: -0.02em;
}

.step-card h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1a1a1a;
}

.step-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
    max-width: 600px;
}

/* Testimonial Block */
.testimonial-block {
    padding: 8rem 2rem;
    background-color: #2d5a3d;
    color: #ffffff;
}

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

.testimonial-text {
    font-size: 1.75rem;
    line-height: 1.6;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 2rem;
}

.testimonial-author {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Services Preview */
.services-preview {
    padding: 8rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.services-intro {
    text-align: center;
    margin-bottom: 5rem;
}

.services-intro h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.services-intro p {
    font-size: 1.15rem;
    color: #4a4a4a;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
}

.service-card.featured {
    border: 2px solid #2d5a3d;
    background-color: #f8faf9;
}

.service-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background-color: #2d5a3d;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-card h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1a1a1a;
}

.service-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #2d5a3d;
}

.service-select {
    align-self: flex-start;
    padding: 0.875rem 2rem;
    background-color: #2d5a3d;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.service-select:hover {
    background-color: #1a3524;
}

.services-link {
    text-align: center;
    margin-top: 3rem;
}

.services-link a {
    font-size: 1.05rem;
    font-weight: 600;
    color: #2d5a3d;
    text-decoration: underline;
}

/* Form Section */
.form-section {
    padding: 8rem 2rem;
    background-color: #f5f5f5;
}

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

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

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

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a1a;
}

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

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

.btn-submit {
    padding: 1.125rem 3rem;
    background-color: #2d5a3d;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #1a3524;
}

/* Philosophy Section */
.philosophy-section {
    padding: 8rem 2rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.philosophy-content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.philosophy-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

.link-simple {
    font-size: 1.05rem;
    font-weight: 600;
    color: #2d5a3d;
    text-decoration: underline;
}

/* Footer */
.footer-minimal {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 5rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-brand .brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

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

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

.footer-column h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.98);
    color: #ffffff;
    padding: 1.5rem 2rem;
    z-index: 2000;
    display: none;
    backdrop-filter: blur(10px);
}

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

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

.cookie-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
}

.cookie-content a {
    color: #ffffff;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background-color: #2d5a3d;
    color: #ffffff;
}

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

.cookie-btn.reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

/* About Page */
.about-hero {
    margin-top: 80px;
    padding: 6rem 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.about-intro h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.03em;
    text-align: center;
    color: #1a1a1a;
}

.about-story {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.story-image {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.story-content {
    max-width: 700px;
}

.story-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.story-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.values-section {
    padding: 6rem 2rem;
    background-color: #f5f5f5;
}

.values-header {
    text-align: center;
    margin-bottom: 4rem;
}

.values-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.value-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.value-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
}

.value-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.approach-section {
    padding: 6rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

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

.section-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #2d5a3d;
}

.approach-content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1a1a1a;
}

.approach-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
}

.credentials-section {
    padding: 6rem 2rem;
    background-color: #f5f5f5;
}

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

.credentials-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.credentials-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

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

.credentials-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d5a3d;
    font-weight: 700;
}

.cta-about {
    padding: 6rem 2rem;
    text-align: center;
}

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

.cta-content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.cta-content p {
    font-size: 1.05rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

/* Services Page */
.services-hero {
    margin-top: 80px;
    padding: 6rem 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.services-intro h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.services-intro p {
    font-size: 1.15rem;
    color: #4a4a4a;
}

.services-detail {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem 6rem;
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.service-full {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-info h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
}

.price-tag {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d5a3d;
}

.price-tag.featured {
    color: #1a3524;
}

.service-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
}

.service-includes {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-includes li {
    font-size: 0.95rem;
    color: #4a4a4a;
    padding-left: 1.75rem;
    position: relative;
}

.service-includes li:before {
    content: "•";
    position: absolute;
    left: 0.5rem;
    color: #2d5a3d;
    font-weight: 700;
}

.service-visual {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
}

.service-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.pricing-notes {
    padding: 4rem 2rem;
    background-color: #f5f5f5;
}

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

.notes-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.notes-content ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.notes-content li {
    font-size: 0.95rem;
    color: #4a4a4a;
    padding-left: 1.75rem;
    position: relative;
}

.notes-content li:before {
    content: "•";
    position: absolute;
    left: 0.5rem;
    color: #2d5a3d;
}

/* Contact Page */
.contact-hero {
    margin-top: 80px;
    padding: 6rem 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.contact-intro h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-intro p {
    font-size: 1.15rem;
    color: #4a4a4a;
}

.contact-info {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.contact-block {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-block h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
}

.contact-block p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.contact-block a {
    color: #2d5a3d;
    font-weight: 500;
}

.contact-note {
    font-size: 0.9rem;
    color: #6a6a6a;
    font-style: italic;
}

.hours-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hours-list li {
    font-size: 1.05rem;
    color: #4a4a4a;
}

.contact-cta {
    padding: 6rem 2rem;
    background-color: #f5f5f5;
}

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

.cta-box h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.cta-box p {
    font-size: 1.05rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

.faq-section {
    padding: 6rem 2rem;
}

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

.faq-container h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a1a;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.faq-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
}

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
}

/* Thanks Page */
.thanks-section {
    margin-top: 80px;
    padding: 6rem 2rem;
    min-height: 60vh;
}

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

.thanks-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thanks-container h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 1.15rem;
    color: #4a4a4a;
    margin-bottom: 1rem;
}

.service-confirmation {
    font-size: 1.05rem;
    font-weight: 600;
    color: #2d5a3d;
    margin-bottom: 2rem;
}

.thanks-info {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 3rem;
}

.thanks-next {
    background-color: #f5f5f5;
    padding: 2.5rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.thanks-next h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.next-steps {
    list-style: decimal;
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
    padding-left: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.next-steps li {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #4a4a4a;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.thanks-extra {
    padding: 4rem 2rem;
    background-color: #f5f5f5;
}

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

.extra-content h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.extra-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

/* Legal Pages */
.legal-header {
    margin-top: 80px;
    padding: 4rem 2rem;
    background-color: #f5f5f5;
    text-align: center;
}

.legal-intro h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-intro p {
    font-size: 0.95rem;
    color: #6a6a6a;
}

.legal-content {
    padding: 4rem 2rem;
}

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

.legal-container h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.legal-container h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-container p {
    font-size: 1rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.legal-container ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-container li {
    font-size: 1rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 0.75rem;
}

.btn-cookie-settings {
    margin-top: 1.5rem;
    padding: 1rem 2rem;
    background-color: #2d5a3d;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

/* Tablet Styles */
@media (min-width: 768px) {
    .hero-minimal {
        flex-direction: row;
        gap: 4rem;
        align-items: center;
    }

    .hero-content {
        margin-bottom: 0;
    }

    .hero-image {
        max-width: 600px;
    }

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

    .step-card {
        flex: 1 1 300px;
    }

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

    .service-card {
        flex: 1 1 calc(50% - 1rem);
    }

    .footer-links {
        flex-direction: row;
        gap: 4rem;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .cookie-content p {
        text-align: left;
    }

    .about-story {
        flex-direction: row;
        align-items: center;
    }

    .story-image {
        flex: 0 0 400px;
    }

    .story-content {
        flex: 1;
    }

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

    .value-item {
        flex: 1 1 300px;
    }

    .service-full {
        flex-direction: row;
        align-items: center;
    }

    .service-full.reverse {
        flex-direction: row-reverse;
    }

    .service-info {
        flex: 1;
    }

    .service-visual {
        flex: 0 0 450px;
    }

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

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

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .nav-links {
        gap: 3rem;
    }

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

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Large Desktop */
@media (min-width: 1400px) {
    .hero-minimal h1 {
        font-size: 4rem;
    }

    .intro-block h2,
    .process-header h2 {
        font-size: 3rem;
    }
}
