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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

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

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

.cookie-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #27ae60;
    color: #ffffff;
}

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

.btn-reject {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

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

/* Navigation */
.main-nav {
    position: sticky;
    top: 0;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 15px 0;
}

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #e67e22;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    padding: 80px 30px 30px;
    gap: 20px;
    box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
}

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

.nav-menu li a {
    font-size: 18px;
    font-weight: 500;
    color: #2c3e50;
    display: block;
    padding: 10px 0;
}

.nav-menu li a:hover {
    color: #e67e22;
    padding-left: 8px;
}

/* Hero Asymmetric */
.hero-asymmetric {
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    padding: 40px 20px;
    background: linear-gradient(135deg, #fef5e7 0%, #ffffff 100%);
    position: relative;
}

.hero-content-offset {
    max-width: 600px;
    margin: 40px 0 30px 5%;
    z-index: 2;
}

.hero-title-large {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 20px;
    color: #7f8c8d;
    margin-bottom: 30px;
    font-weight: 400;
}

.hero-image-overlap {
    width: 90%;
    max-width: 500px;
    margin-left: auto;
    margin-right: 5%;
    transform: translateY(-30px);
}

.hero-image-overlap img {
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* CTA Buttons */
.cta-primary,
.cta-secondary,
.cta-large {
    display: inline-block;
    padding: 16px 36px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-primary {
    background: #e67e22;
    color: #ffffff;
}

.cta-primary:hover {
    background: #d35400;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(230, 126, 34, 0.3);
}

.cta-secondary {
    background: #3498db;
    color: #ffffff;
}

.cta-secondary:hover {
    background: #2980b9;
    transform: translateY(-3px);
}

.cta-large {
    background: #27ae60;
    color: #ffffff;
    padding: 18px 48px;
    font-size: 18px;
}

.cta-large:hover {
    background: #229954;
    transform: translateY(-3px);
}

/* Intro Offset Section */
.intro-offset {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.intro-block-left {
    max-width: 650px;
}

.intro-block-left h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #2c3e50;
}

.intro-block-left p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.intro-stats-right {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-start;
}

.stat-card {
    background: #ecf0f1;
    padding: 30px;
    border-radius: 10px;
    flex: 1 1 150px;
    min-width: 150px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-number {
    font-size: 38px;
    font-weight: 800;
    color: #e67e22;
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #7f8c8d;
    font-weight: 500;
}

/* Services Highlight */
.services-highlight {
    padding: 80px 20px;
    background: #f8f9fa;
}

.services-header-diagonal {
    max-width: 1200px;
    margin: 0 auto 50px;
    text-align: left;
    padding-left: 8%;
}

.services-header-diagonal h2 {
    font-size: 38px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.services-header-diagonal p {
    font-size: 18px;
    color: #7f8c8d;
}

.services-preview-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-preview-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.service-preview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.service-preview-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-preview-card h3 {
    font-size: 24px;
    color: #2c3e50;
    margin: 20px 20px 10px;
}

.service-preview-card p {
    font-size: 16px;
    color: #555;
    margin: 0 20px 15px;
    line-height: 1.6;
}

.link-arrow {
    display: inline-block;
    margin: 0 20px 20px;
    color: #e67e22;
    font-weight: 600;
    font-size: 16px;
}

.link-arrow:hover {
    color: #d35400;
    padding-left: 5px;
}

/* Trust Building Overlap */
.trust-building-overlap {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.trust-image-left {
    width: 100%;
    max-width: 450px;
}

.trust-image-left img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.trust-content-right {
    flex: 1;
}

.trust-content-right h2 {
    font-size: 34px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
}

.trust-list {
    margin-bottom: 30px;
}

.trust-list li {
    font-size: 17px;
    color: #555;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.trust-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 20px;
}

/* Testimonials Cascade */
.testimonials-cascade {
    padding: 80px 20px;
    background: linear-gradient(135deg, #ffffff 0%, #ecf0f1 100%);
}

.testimonials-title {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 50px;
}

.testimonials-staggered {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.testimonial-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.testimonial-offset-1 {
    margin-left: 0;
}

.testimonial-offset-2 {
    margin-left: 5%;
}

.testimonial-offset-3 {
    margin-left: 10%;
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    font-size: 15px;
    color: #7f8c8d;
    font-weight: 600;
}

/* Services Pricing */
.services-pricing {
    padding: 80px 20px;
    background: #ffffff;
}

.pricing-header {
    max-width: 1200px;
    margin: 0 auto 50px;
    text-align: center;
}

.pricing-header h2 {
    font-size: 38px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.pricing-header p {
    font-size: 18px;
    color: #7f8c8d;
}

.pricing-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.pricing-card {
    background: #f8f9fa;
    padding: 35px;
    border-radius: 12px;
    border: 2px solid #ecf0f1;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: #e67e22;
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.15);
    transform: translateY(-3px);
}

.pricing-card h3 {
    font-size: 26px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.pricing-description {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: #e67e22;
    margin-bottom: 20px;
    display: block;
}

.price-unit {
    font-size: 15px;
    font-weight: 400;
    color: #7f8c8d;
}

.pricing-features {
    margin-top: 20px;
}

.pricing-features li {
    font-size: 15px;
    color: #555;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.pricing-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #e67e22;
    font-size: 20px;
}

/* Booking Form Section */
.booking-form-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #fef5e7 0%, #ffffff 100%);
}

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

.form-intro {
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.form-intro p {
    font-size: 17px;
    color: #7f8c8d;
    line-height: 1.6;
}

.booking-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ecf0f1;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #e67e22;
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.3);
}

/* Final CTA Overlap */
.final-cta-overlap {
    padding: 100px 20px;
    background: #2c3e50;
    color: #ffffff;
    text-align: center;
}

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

.final-cta-content h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
}

.final-cta-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 35px;
    opacity: 0.95;
}

/* Footer */
.footer {
    background: #1a252f;
    color: #ecf0f1;
    padding: 60px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #e67e22;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    color: #bdc3c7;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column ul li a {
    font-size: 14px;
    color: #bdc3c7;
}

.footer-column ul li a:hover {
    color: #e67e22;
    padding-left: 5px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #95a5a6;
}

/* About Page Specific */
.about-hero {
    padding: 100px 20px 60px;
    background: linear-gradient(135deg, #fef5e7 0%, #ffffff 100%);
    text-align: center;
}

.about-hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 15px;
}

.hero-lead {
    font-size: 22px;
    color: #7f8c8d;
    font-style: italic;
}

.about-story {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.story-block {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.story-text-offset {
    max-width: 700px;
}

.story-text-offset h2 {
    font-size: 34px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
}

.story-text-offset p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.story-image-overlap {
    width: 100%;
    max-width: 450px;
    margin-left: auto;
}

.story-image-overlap img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.values-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.values-section h2 {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 50px;
}

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

.value-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.team-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-section h2 {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 50px;
}

.team-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.team-member {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
}

.team-offset-1 {
    margin-left: 0;
}

.team-offset-2 {
    margin-left: 5%;
}

.team-offset-3 {
    margin-left: 10%;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.team-member h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 8px;
}

.team-role {
    font-size: 16px;
    color: #e67e22;
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.about-cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    text-align: center;
    color: #ffffff;
}

.about-cta-content h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* Services Page Specific */
.services-hero {
    padding: 100px 20px 60px;
    background: linear-gradient(135deg, #fef5e7 0%, #ffffff 100%);
    text-align: center;
}

.services-hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 15px;
}

.services-hero-content p {
    font-size: 20px;
    color: #7f8c8d;
}

.services-detailed {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.service-detail-card {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 60px;
    padding: 40px;
    background: #ffffff;
    border-radius: 12px;
}

.service-offset-right {
    margin-left: 0;
}

.service-offset-left {
    margin-right: 0;
}

.service-detail-image {
    width: 100%;
}

.service-detail-image img {
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.service-detail-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #e67e22;
    margin-bottom: 20px;
}

.service-price span {
    font-size: 16px;
    font-weight: 400;
    color: #7f8c8d;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

.service-detail-content h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 15px;
    margin-top: 20px;
}

.service-features {
    margin-bottom: 30px;
}

.service-features li {
    font-size: 16px;
    color: #555;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 18px;
}

.btn-service {
    display: inline-block;
    padding: 14px 32px;
    background: #e67e22;
    color: #ffffff;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.3);
}

.services-faq {
    padding: 80px 20px;
    background: #f8f9fa;
}

.services-faq h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 50px;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.faq-item {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.faq-item h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 12px;
}

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

.services-final-cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    text-align: center;
    color: #ffffff;
}

.services-final-cta h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
}

.services-final-cta p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* Contact Page Specific */
.contact-hero {
    padding: 100px 20px 60px;
    background: linear-gradient(135deg, #fef5e7 0%, #ffffff 100%);
    text-align: center;
}

.contact-hero h1 {
    font-size: 48px;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 15px;
}

.contact-hero p {
    font-size: 20px;
    color: #7f8c8d;
}

.contact-info-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-card {
    background: #f8f9fa;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.contact-info-card h2 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.contact-detail {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
}

.contact-detail a {
    color: #e67e22;
    font-weight: 600;
}

.contact-detail a:hover {
    color: #d35400;
    text-decoration: underline;
}

.contact-note {
    font-size: 14px;
    color: #7f8c8d;
    margin-top: 15px;
    font-style: italic;
}

.contact-map-section {
    padding: 60px 20px;
    background: #ffffff;
}

.contact-map-section h2 {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 40px;
}

.contact-directions {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.direction-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
}

.direction-item h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.direction-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.contact-faq {
    padding: 80px 20px;
    background: #f8f9fa;
}

.contact-faq h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 50px;
}

.contact-cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    text-align: center;
    color: #ffffff;
}

.contact-cta h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-cta p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* Thanks Page Specific */
.thanks-section {
    padding: 100px 20px;
    min-height: 70vh;
    background: linear-gradient(135deg, #fef5e7 0%, #ffffff 100%);
}

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

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 42px;
    font-weight: 800;
    color: #27ae60;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 40px;
}

.thanks-service-info {
    background: #ffffff;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.thanks-next-steps {
    margin-bottom: 50px;
}

.thanks-next-steps h2 {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 40px;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: left;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #e67e22;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.step-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

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

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #e67e22;
    color: #ffffff;
}

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

.btn-secondary {
    background: #3498db;
    color: #ffffff;
}

.btn-secondary:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

/* Legal Pages */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 20px;
}

.legal-content h1 {
    font-size: 42px;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 15px;
}

.legal-updated {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.legal-section h3 {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    margin-top: 25px;
}

.legal-section h4 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
    margin-top: 20px;
}

.legal-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.legal-section ul {
    margin: 15px 0 15px 20px;
}

.legal-section ul li {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 10px;
    padding-left: 15px;
    position: relative;
    list-style: disc;
}

.legal-section a {
    color: #e67e22;
    text-decoration: underline;
}

.legal-section a:hover {
    color: #d35400;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookie-table thead {
    background: #f8f9fa;
}

.cookie-table th {
    padding: 12px;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
    border-bottom: 2px solid #ecf0f1;
}

.cookie-table td {
    padding: 12px;
    font-size: 15px;
    color: #555;
    border-bottom: 1px solid #ecf0f1;
}

/* Tablet and Desktop */
@media (min-width: 768px) {
    .hamburger {
        display: none;
    }

    .nav-menu {
        position: static;
        width: auto;
        height: auto;
        flex-direction: row;
        padding: 0;
        box-shadow: none;
        background: transparent;
        gap: 30px;
    }

    .nav-menu li a {
        font-size: 16px;
    }

    .hero-asymmetric {
        flex-direction: row;
        align-items: center;
        min-height: 90vh;
        padding: 60px 40px;
    }

    .hero-content-offset {
        flex: 1;
        margin: 0;
    }

    .hero-title-large {
        font-size: 56px;
    }

    .hero-image-overlap {
        flex: 1;
        margin-left: 40px;
        transform: translateY(0);
    }

    .intro-offset {
        flex-direction: row;
        gap: 60px;
    }

    .intro-stats-right {
        flex: 0 0 300px;
    }

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

    .service-preview-card {
        flex: 1 1 calc(33.333% - 20px);
        min-width: 280px;
    }

    .trust-building-overlap {
        flex-direction: row;
        align-items: center;
    }

    .trust-image-left {
        flex: 0 0 400px;
    }

    .testimonials-staggered {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .testimonial-card {
        flex: 1 1 calc(33.333% - 20px);
        min-width: 280px;
    }

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

    .pricing-card {
        flex: 1 1 calc(50% - 15px);
    }

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

    .story-text-offset {
        flex: 1;
    }

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

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

    .value-card {
        flex: 1 1 calc(33.333% - 20px);
    }

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

    .team-member {
        flex: 1 1 calc(33.333% - 27px);
    }

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

    .service-offset-right {
        margin-left: 5%;
    }

    .service-offset-left {
        flex-direction: row-reverse;
        margin-right: 5%;
        margin-left: 0;
    }

    .service-detail-image {
        flex: 0 0 45%;
    }

    .service-detail-content {
        flex: 1;
    }

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

    .contact-info-card {
        flex: 1 1 calc(33.333% - 20px);
    }

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

    .direction-item {
        flex: 1;
    }

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

    .step {
        flex: 1 1 100%;
    }

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

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

    .footer-column {
        flex: 1;
    }

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

    .cookie-buttons {
        flex-shrink: 0;
    }
}

@media (min-width: 1024px) {
    .hero-title-large {
        font-size: 64px;
    }

    .pricing-card {
        flex: 1 1 calc(33.333% - 20px);
    }
}