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

/* Root Variables */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #ecf0f1;
    --bg-white: #ffffff;
    --border-color: #bdc3c7;
    --success-color: #27ae60;
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-heading: Georgia, 'Times New Roman', serif;
    --transition: all 0.3s ease;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-lg: 0 4px 20px rgba(0,0,0,0.15);
}

/* Global Styles */
body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

ul {
    list-style: none;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    z-index: 10000;
    display: none;
}

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

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

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

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

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

.cookie-buttons button {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

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

.btn-primary:hover {
    background: #229954;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

/* Navigation */
.main-nav {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

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

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

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

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--secondary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
}

/* Split Container System */
.split-container {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.split-container.reverse {
    flex-direction: row-reverse;
}

.split-left,
.split-right {
    flex: 1;
}

/* Hero Section */
.hero-split {
    display: flex;
    min-height: 600px;
    background: var(--bg-light);
}

.hero-split .split-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem;
}

.hero-split .split-right {
    flex: 1;
    overflow: hidden;
}

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

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

.lead {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* CTA Buttons */
.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--secondary-color);
    color: white;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.cta-primary:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cta-large {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
}

/* Story Section */
.story-section {
    background: var(--bg-white);
}

.content-block {
    padding: 2rem;
}

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

.content-block p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--accent-color);
}

.link-arrow::after {
    content: '→';
    transition: var(--transition);
}

.link-arrow:hover::after {
    transform: translateX(5px);
}

/* Services Section */
.services-highlight {
    background: var(--bg-light);
    padding: 5rem 2rem;
}

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

.section-header.centered h2 {
    font-size: 2.5rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.services-grid-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 300px;
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.service-visual {
    height: 250px;
    overflow: hidden;
}

.service-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-visual img {
    transform: scale(1.05);
}

.service-info {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

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

.service-info p {
    color: var(--text-light);
    margin-bottom: auto;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 1.5rem 0;
}

.select-service {
    width: 100%;
    padding: 1rem;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.select-service:hover {
    background: #2980b9;
}

/* Trust Section */
.trust-section {
    background: var(--bg-white);
}

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

.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: var(--success-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-item h4 {
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: var(--text-light);
}

/* Testimonials Section */
.testimonials-section {
    background: var(--bg-light);
    padding: 5rem 2rem;
    text-align: center;
}

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

.testimonials-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1 1 300px;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
}

/* CTA Section Split */
.cta-section-split {
    background: var(--primary-color);
    color: white;
}

.cta-section-split .split-container {
    padding: 5rem 2rem;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-visual {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* Form Section */
.form-section {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

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

.form-container h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.form-intro {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
}

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

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

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-weight: 400;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.3rem;
    width: 18px;
    height: 18px;
}

.btn-submit {
    padding: 1.2rem;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

/* Footer */
.main-footer {
    background: var(--primary-color);
    color: white;
    padding: 4rem 2rem 2rem;
}

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

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

.footer-column h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
}

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

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

.footer-column a:hover {
    color: white;
}

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

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

.sticky-cta a {
    display: block;
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: white;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    font-weight: 600;
    transition: var(--transition);
}

.sticky-cta a:hover {
    background: #c0392b;
    transform: scale(1.05);
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 5rem 2rem;
    text-align: center;
}

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

.page-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
}

/* About Page Styles */
.about-story {
    background: var(--bg-white);
}

.values-section {
    background: var(--bg-light);
    padding: 5rem 2rem;
}

.values-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.value-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

.value-card p {
    color: var(--text-light);
}

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

.philosophy-section {
    background: var(--bg-light);
    padding: 5rem 2rem;
}

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

.intro-text {
    font-size: 1.4rem;
    font-style: italic;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 3rem;
}

.philosophy-points {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.point h4 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.point p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.cta-about {
    background: var(--bg-white);
    padding: 5rem 2rem;
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 4rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.cta-box h2 {
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Services Page Styles */
.services-detailed {
    background: var(--bg-white);
}

.service-detail-card {
    padding: 3rem 0;
    border-bottom: 1px solid var(--border-color);
}

.service-detail-card:last-child {
    border-bottom: none;
}

.service-detail-content {
    padding: 2rem;
}

.price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 1rem 0 1.5rem;
}

.service-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 2rem;
}

.service-features li {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.extras-section {
    background: var(--bg-light);
    padding: 5rem 2rem;
}

.extras-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.extra-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 250px;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.extra-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.extra-item p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.extra-price {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.order-cta-section {
    background: var(--bg-white);
    padding: 5rem 2rem;
}

.cta-box-large {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 5rem 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 12px;
}

.cta-box-large h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-box-large p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Contact Page Styles */
.contact-main {
    background: var(--bg-white);
}

.contact-info-block {
    padding: 2rem;
}

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

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

.contact-item p {
    color: var(--text-dark);
    line-height: 1.8;
}

.contact-item a {
    color: var(--accent-color);
    font-weight: 600;
}

.note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-visual {
    position: relative;
}

.info-box {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.info-box h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.info-box p {
    color: var(--text-light);
}

.directions-section {
    background: var(--bg-light);
    padding: 5rem 2rem;
}

.directions-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.direction-item {
    flex: 1 1 300px;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.direction-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.direction-item p {
    color: var(--text-light);
}

.faq-section {
    background: var(--bg-white);
    padding: 5rem 2rem;
}

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

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

.faq-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.faq-item p {
    color: var(--text-dark);
}

.cta-contact {
    background: var(--bg-light);
    padding: 5rem 2rem;
}

/* Thanks Page Styles */
.thanks-hero {
    background: linear-gradient(135deg, var(--success-color), #1e8449);
    color: white;
    padding: 5rem 2rem;
    text-align: center;
}

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

.success-icon {
    width: 100px;
    height: 100px;
    background: white;
    color: var(--success-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    margin: 0 auto 2rem;
}

.thanks-hero h1 {
    color: white;
}

.thanks-info {
    background: var(--bg-white);
    padding: 5rem 2rem;
}

.steps-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.step-item {
    flex: 1 1 calc(25% - 1.5rem);
    min-width: 200px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

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

.step-item p {
    color: var(--text-light);
}

.selected-service-info {
    background: var(--bg-light);
    padding: 3rem 2rem;
}

.info-box-centered {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.info-box-centered h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.additional-info {
    background: var(--bg-white);
    padding: 4rem 2rem;
}

.action-list {
    list-style: disc;
    margin-left: 1.5rem;
}

.action-list li {
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.contact-quick {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

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

.contact-quick p {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.thanks-cta {
    background: var(--bg-light);
    padding: 5rem 2rem;
}

/* Legal Pages Styles */
.legal-page {
    background: var(--bg-white);
    padding: 4rem 2rem;
}

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

.legal-container h1 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.updated {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 3rem;
}

.legal-container h2 {
    color: var(--primary-color);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.legal-container h3 {
    color: var(--text-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-container ul {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-container li {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.legal-container p {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.gdpr-table,
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.gdpr-table thead,
.cookie-table thead {
    background: var(--bg-light);
}

.gdpr-table th,
.cookie-table th,
.gdpr-table td,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.gdpr-table th,
.cookie-table th {
    font-weight: 600;
    color: var(--primary-color);
}

.warning-box {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1rem;
    margin: 2rem 0;
    border-radius: 4px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .split-container {
        gap: 2rem;
        padding: 3rem 1.5rem;
    }

    .services-grid-split {
        gap: 1.5rem;
    }

    .service-card {
        flex: 1 1 100%;
    }
}

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

    h2 {
        font-size: 1.7rem;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: var(--bg-white);
        width: 100%;
        padding: 2rem;
        box-shadow: var(--shadow);
        transition: var(--transition);
        align-items: flex-start;
    }

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

    .hamburger {
        display: flex;
    }

    .split-container,
    .split-container.reverse {
        flex-direction: column;
        padding: 2rem 1rem;
    }

    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-split .split-left {
        padding: 3rem 1.5rem;
    }

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

    .lead {
        font-size: 1.1rem;
    }

    .services-grid-split {
        flex-direction: column;
    }

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

    .values-grid,
    .extras-grid,
    .directions-grid {
        flex-direction: column;
    }

    .value-card,
    .extra-item,
    .direction-item {
        flex: 1 1 100%;
    }

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

    .step-item {
        flex: 1 1 100%;
    }

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

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

    .sticky-cta a {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
    }

    .cookie-buttons button {
        flex: 1;
    }

    .cta-box,
    .cta-box-large {
        padding: 3rem 2rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }

    .brand {
        font-size: 1.1rem;
    }

    h1 {
        font-size: 1.7rem;
    }

    h2 {
        font-size: 1.5rem;
    }

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

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

    .cta-primary {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }

    .service-info {
        padding: 1.5rem;
    }

    .price {
        font-size: 1.7rem;
    }

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

    .info-box {
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
        padding: 1.5rem;
    }
}
