* {
    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: #333;
    overflow-x: hidden;
}

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

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

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

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 2px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #1a1a1a;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    color: #333;
    font-weight: 500;
    position: relative;
}

.nav-menu a:hover {
    color: #6b5b50;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #6b5b50;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.hero-visual {
    position: relative;
    height: 100vh;
    margin-top: 0;
}

.hero-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    color: white;
    padding: 2rem;
    max-width: 900px;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.cta-hero {
    display: inline-block;
    background: white;
    color: #1a1a1a;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-hero:hover {
    background: #6b5b50;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.intro-narrow {
    padding: 8rem 2rem;
    background: #fafafa;
}

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

.intro-text {
    font-size: 1.4rem;
    line-height: 1.8;
    color: #555;
    text-align: center;
}

.image-story {
    padding: 0;
}

.story-grid {
    display: flex;
    align-items: stretch;
}

.story-image {
    flex: 1;
    min-height: 600px;
}

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

.story-content {
    flex: 1;
    padding: 6rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    line-height: 1.2;
}

.story-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: #555;
}

.cta-inline {
    display: inline-block;
    color: #6b5b50;
    font-weight: 600;
    border-bottom: 2px solid #6b5b50;
    padding-bottom: 3px;
    margin-top: 1rem;
}

.cta-inline:hover {
    border-bottom-color: #1a1a1a;
    color: #1a1a1a;
}

.services-visual {
    padding: 8rem 2rem;
    background: white;
}

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

.section-header-center h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.section-header-center p {
    font-size: 1.2rem;
    color: #666;
}

.services-cards {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.service-card {
    background: #fafafa;
    overflow: hidden;
    flex: 1 1 350px;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

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

.service-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-info p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #6b5b50;
    margin-bottom: 1.5rem;
}

.service-select {
    background: #1a1a1a;
    color: white;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.service-select:hover {
    background: #6b5b50;
    transform: translateY(-2px);
}

.testimonial-overlay {
    padding: 0;
    position: relative;
}

.testimonial-bg {
    background-size: cover;
    background-position: center;
    padding: 10rem 2rem;
    position: relative;
}

.testimonial-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

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

blockquote {
    font-size: 1.8rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

cite {
    font-size: 1.1rem;
    font-style: normal;
    font-weight: 600;
    opacity: 0.9;
}

.approach-section {
    padding: 8rem 2rem;
    background: white;
}

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

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.approach-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

.approach-image {
    flex: 1;
}

.approach-image img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.portfolio-preview {
    padding: 8rem 2rem;
    background: #f5f5f5;
    text-align: center;
}

.portfolio-preview h2 {
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #1a1a1a;
}

.portfolio-grid {
    max-width: 1200px;
    margin: 0 auto 3rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.portfolio-item {
    flex: 1 1 calc(25% - 1.5rem);
    min-width: 250px;
    height: 350px;
    overflow: hidden;
    border-radius: 4px;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-cta {
    margin-top: 3rem;
}

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

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

.form-section {
    padding: 8rem 2rem;
    background: white;
}

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

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.form-intro h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.form-intro p {
    font-size: 1.1rem;
    color: #666;
}

.booking-form {
    background: #fafafa;
    padding: 3rem;
    border-radius: 4px;
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    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: #6b5b50;
}

.btn-submit {
    width: 100%;
    background: #1a1a1a;
    color: white;
    padding: 1.2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

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

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-content h3 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.trust-points {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-point {
    flex: 1 1 250px;
    text-align: center;
}

.trust-point h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.trust-point p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.footer {
    background: #1a1a1a;
    color: white;
    padding: 4rem 2rem 2rem;
}

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

.footer-section {
    flex: 1 1 250px;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-section p {
    font-size: 0.95rem;
    opacity: 0.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.7rem;
}

.footer-section ul li a {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
}

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

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 900;
}

.sticky-btn {
    background: #6b5b50;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 1.5rem 2rem;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.15);
    z-index: 1100;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
    color: #555;
}

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

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: #6b5b50;
    color: white;
}

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

.cookie-btn.reject {
    background: #f0f0f0;
    color: #333;
}

.cookie-btn.reject:hover {
    background: #ddd;
}

.page-hero {
    padding: 12rem 2rem 6rem;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.page-hero-content p {
    font-size: 1.3rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.services-detailed {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.service-detail {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
    padding-bottom: 6rem;
    border-bottom: 1px solid #e0e0e0;
}

.service-detail:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

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

.service-detail-image {
    flex: 1;
    border-radius: 4px;
    overflow: hidden;
}

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

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

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.price-tag {
    font-size: 2rem;
    font-weight: 700;
    color: #6b5b50;
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #555;
}

.service-detail-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
    color: #1a1a1a;
}

.service-detail-content ul {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.service-detail-content ul li {
    margin-bottom: 0.7rem;
    color: #555;
    line-height: 1.6;
}

.btn-service {
    display: inline-block;
    background: #1a1a1a;
    color: white;
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background: #6b5b50;
    transform: translateY(-2px);
}

.services-cta {
    padding: 6rem 2rem;
    background: #f5f5f5;
    text-align: center;
}

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

.cta-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.btn-large {
    display: inline-block;
    background: #6b5b50;
    color: white;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.about-hero {
    position: relative;
    padding-top: 80px;
}

.about-hero-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

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

.about-hero-text {
    padding: 4rem 2rem;
    background: #fafafa;
    text-align: center;
}

.about-hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.about-hero-text p {
    font-size: 1.3rem;
    color: #666;
}

.about-story {
    padding: 6rem 2rem;
    background: white;
}

.story-content {
    padding: 0;
}

.lead-text {
    font-size: 1.5rem;
    line-height: 1.8;
    color: #1a1a1a;
    margin-bottom: 2rem;
    font-weight: 500;
}

.story-content p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: #555;
}

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

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

.philosophy-image {
    flex: 1;
}

.philosophy-image img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.philosophy-content {
    flex: 1;
}

.philosophy-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.philosophy-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.3rem;
    color: #555;
}

.values-section {
    padding: 6rem 2rem;
    background: white;
    text-align: center;
}

.values-section h2 {
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: #1a1a1a;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.value-card {
    flex: 1 1 250px;
    padding: 2.5rem 2rem;
    background: #fafafa;
    border-radius: 4px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.value-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
}

.experience-section {
    padding: 6rem 2rem;
    background: #1a1a1a;
    color: white;
    text-align: center;
}

.experience-content h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
}

.experience-list {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.experience-item {
    flex: 1 1 200px;
}

.exp-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #6b5b50;
    margin-bottom: 0.5rem;
}

.exp-text {
    font-size: 1.1rem;
    opacity: 0.9;
}

.equipment-section {
    padding: 6rem 2rem;
    background: white;
}

.equipment-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
    text-align: center;
}

.equipment-section p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

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

.cta-about-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.cta-about-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.contact-hero {
    padding: 12rem 2rem 6rem;
    background: linear-gradient(135deg, #6b5b50 0%, #1a1a1a 100%);
    text-align: center;
    color: white;
}

.contact-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.contact-hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.contact-info-section {
    padding: 6rem 2rem;
    background: white;
}

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

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: #1a1a1a;
}

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

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    color: #6b5b50;
}

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

.contact-item a {
    color: #6b5b50;
    border-bottom: 1px solid transparent;
    transition: border-bottom-color 0.3s ease;
}

.contact-item a:hover {
    border-bottom-color: #6b5b50;
}

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

.contact-note p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    background: #f5f5f5;
    height: 100%;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    border-radius: 4px;
    text-align: center;
}

.map-placeholder p {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.map-note {
    font-size: 1rem;
    color: #666;
}

.contact-faq {
    padding: 6rem 2rem;
    background: #fafafa;
}

.contact-faq h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
    text-align: center;
}

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

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

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

.contact-cta {
    padding: 6rem 2rem;
    background: white;
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    background: #f5f5f5;
    padding: 4rem 3rem;
    border-radius: 4px;
    text-align: center;
}

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

.cta-box p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    background: #6b5b50;
    color: white;
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.thanks-section {
    padding: 12rem 2rem 6rem;
    background: white;
    text-align: center;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #6b5b50;
    color: white;
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

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

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

.service-selected {
    background: #f5f5f5;
    padding: 1.5rem;
    border-radius: 4px;
    font-size: 1.1rem;
    color: #1a1a1a;
}

.thanks-next {
    margin: 4rem 0;
    text-align: left;
}

.thanks-next h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
    text-align: center;
}

.next-steps {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.step {
    flex: 1 1 250px;
    background: #fafafa;
    padding: 2rem;
    border-radius: 4px;
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #6b5b50;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.step p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

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

.thanks-additional {
    padding: 4rem 2rem;
    background: #f5f5f5;
    text-align: center;
}

.thanks-additional h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.thanks-additional p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.additional-links a {
    color: #6b5b50;
    font-weight: 600;
    border-bottom: 2px solid #6b5b50;
    padding-bottom: 2px;
}

.additional-links a:hover {
    color: #1a1a1a;
    border-bottom-color: #1a1a1a;
}

.legal-page {
    padding: 10rem 2rem 6rem;
    background: white;
}

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

.legal-container h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.last-updated {
    font-size: 0.95rem;
    color: #999;
    margin-bottom: 3rem;
}

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

.legal-container h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #333;
}

.legal-container h4 {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.7rem;
    color: #555;
}

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

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

.legal-container ul li {
    margin-bottom: 0.7rem;
    line-height: 1.7;
    color: #555;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

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

    .hero-content p {
        font-size: 1.1rem;
    }

    .story-grid,
    .approach-layout,
    .philosophy-layout,
    .contact-layout,
    .service-detail {
        flex-direction: column;
    }

    .service-detail.reverse {
        flex-direction: column;
    }

    .portfolio-item {
        flex: 1 1 calc(50% - 1.5rem);
    }

    .trust-points,
    .experience-list,
    .next-steps {
        flex-direction: column;
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

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

    .cookie-buttons {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
    }

    .section-header-center h2,
    .page-hero-content h1 {
        font-size: 2.2rem;
    }

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}
