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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #fdfcfa;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    border-top: 2px solid #e0d5c7;
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
}

.cookie-banner.hidden {
    display: none;
}

.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 {
    flex: 1;
    min-width: 300px;
    margin: 0;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background-color: #8b7355;
    color: #fff;
}

.btn-cookie-accept:hover {
    background-color: #7a6349;
}

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

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

.navbar {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 999;
}

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

.nav-brand {
    font-size: 1.75rem;
    font-weight: 600;
    color: #2c2c2c;
    letter-spacing: -0.5px;
}

.nav-ad-label {
    font-size: 0.75rem;
    color: #999;
    padding: 0.25rem 0.75rem;
    background-color: #f5f5f5;
    border-radius: 3px;
}

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

.nav-menu a {
    text-decoration: none;
    color: #2c2c2c;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #8b7355;
}

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

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

.hero-split {
    display: flex;
    min-height: 85vh;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 3rem;
    background-color: #f9f6f2;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-visual {
    flex: 1;
    overflow: hidden;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #8b7355;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary:hover {
    background-color: #7a6349;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 115, 85, 0.3);
}

.btn-primary-large {
    display: inline-block;
    padding: 1.25rem 2.5rem;
    background-color: #8b7355;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.btn-primary-large:hover {
    background-color: #7a6349;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 115, 85, 0.3);
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: transparent;
    color: #8b7355;
    text-decoration: none;
    border-radius: 4px;
    border: 2px solid #8b7355;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #8b7355;
    color: #fff;
}

.intro-split {
    display: flex;
    align-items: center;
}

.intro-visual {
    flex: 1;
    overflow: hidden;
}

.intro-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.intro-text {
    flex: 1;
    padding: 4rem 3rem;
}

.intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    line-height: 1.2;
}

.intro-text p {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 1.25rem;
}

.services-highlight {
    padding: 5rem 2rem;
    background-color: #fff;
}

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

.services-header h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.services-header p {
    font-size: 1.125rem;
    color: #666;
}

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

.service-card-split {
    display: flex;
    background-color: #fafaf8;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.service-image {
    flex: 1;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-info {
    flex: 1;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.service-info p {
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #8b7355;
    margin-bottom: 1.5rem;
}

.btn-service {
    padding: 0.875rem 1.75rem;
    background-color: #8b7355;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    font-size: 1rem;
}

.btn-service:hover {
    background-color: #7a6349;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 115, 85, 0.3);
}

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

.value-split {
    display: flex;
    background-color: #f9f6f2;
}

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

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

.value-content p {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.value-list {
    list-style: none;
    padding-left: 0;
}

.value-list li {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 0.875rem;
    padding-left: 1.75rem;
    position: relative;
}

.value-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #8b7355;
    font-weight: 700;
}

.value-visual {
    flex: 1;
    overflow: hidden;
}

.value-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.testimonials {
    padding: 5rem 2rem;
    background-color: #fff;
}

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

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background-color: #f9f6f2;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #8b7355;
}

.testimonial-card p {
    font-size: 1.05rem;
    color: #555;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: #8b7355;
}

.cta-split {
    display: flex;
}

.cta-visual {
    flex: 1;
    overflow: hidden;
}

.cta-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.cta-content {
    flex: 1;
    padding: 4rem 3rem;
    background-color: #2c2c2c;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

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

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.modal.hidden {
    display: none;
}

.modal-content {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #2c2c2c;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2c2c2c;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background-color: #f5f5f5;
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #8b7355;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #7a6349;
}

.footer {
    background-color: #2c2c2c;
    color: #d0d0d0;
    padding: 3rem 2rem 1rem;
}

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

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

.footer-section h3,
.footer-section h4 {
    color: #fff;
    margin-bottom: 1rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

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

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

.footer-section ul li a {
    color: #d0d0d0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #fff;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: #3a3a3a;
    border-radius: 4px;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #b0b0b0;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #999;
    font-size: 0.875rem;
}

.page-header {
    text-align: center;
    padding: 4rem 2rem;
    background-color: #f9f6f2;
}

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

.page-header p {
    font-size: 1.25rem;
    color: #666;
}

.services-full {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.service-detail-split {
    display: flex;
    margin-bottom: 4rem;
    align-items: center;
}

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

.service-detail-content {
    flex: 1;
    padding: 3rem;
}

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

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

.service-detail-content ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-detail-content ul li {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 0.75rem;
    padding-left: 1.75rem;
    position: relative;
}

.service-detail-content ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #8b7355;
    font-weight: 700;
    font-size: 1.5rem;
}

.service-pricing {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.price-amount {
    font-size: 2.25rem;
    font-weight: 700;
    color: #8b7355;
}

.service-detail-image {
    flex: 1;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.cta-section {
    text-align: center;
    padding: 5rem 2rem;
    background-color: #f9f6f2;
}

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

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

.about-split {
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

.about-content {
    flex: 1;
    padding: 3rem;
}

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

.about-content p {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.about-visual {
    flex: 1;
    overflow: hidden;
}

.about-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.values-section {
    padding: 5rem 2rem;
    background-color: #fff;
}

.values-section h2 {
    text-align: center;
    font-size: 2.75rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: #f9f6f2;
    border-radius: 8px;
}

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

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

.approach-split {
    display: flex;
    align-items: center;
    background-color: #f9f6f2;
}

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

.approach-visual {
    flex: 1;
    overflow: hidden;
}

.approach-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.approach-content {
    flex: 1;
    padding: 3rem;
}

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

.approach-content p {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.process-section {
    padding: 5rem 2rem;
    background-color: #fff;
}

.process-section h2 {
    text-align: center;
    font-size: 2.75rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.process-steps {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 240px;
    text-align: center;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: #8b7355;
    margin-bottom: 1rem;
    opacity: 0.3;
}

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

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

.team-split {
    display: flex;
    align-items: center;
    background-color: #f9f6f2;
}

.team-content {
    flex: 1;
    padding: 3rem;
}

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

.team-content p {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.team-visual {
    flex: 1;
    overflow: hidden;
}

.team-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.contact-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.contact-info {
    flex: 1;
    padding: 2rem;
}

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

.contact-detail {
    margin-bottom: 2rem;
}

.contact-detail h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #8b7355;
}

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

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

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

.contact-visual {
    flex: 1;
    overflow: hidden;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.faq-section {
    padding: 5rem 2rem;
    background-color: #f9f6f2;
}

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

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

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
}

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

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

.thanks-container {
    min-height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem 2rem;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background-color: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.thanks-icon {
    font-size: 4rem;
    color: #8b7355;
    margin-bottom: 1.5rem;
    width: 80px;
    height: 80px;
    background-color: #f9f6f2;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
}

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

.thanks-message {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.service-detail-box {
    background-color: #f9f6f2;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: left;
}

.service-detail-box h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #8b7355;
}

.service-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.service-price {
    font-size: 1.25rem;
    color: #666;
}

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

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

.next-steps {
    list-style: none;
    padding-left: 0;
}

.next-steps li {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 0.875rem;
    padding-left: 1.75rem;
    position: relative;
}

.next-steps li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #8b7355;
    font-weight: 700;
}

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

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

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

.legal-date {
    font-size: 0.95rem;
    color: #999;
    margin-bottom: 2rem;
}

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

.legal-content h3 {
    font-size: 1.35rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2c2c2c;
}

.legal-content h4 {
    font-size: 1.125rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
}

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

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

.legal-content ul li {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.legal-table th,
.legal-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.legal-table th {
    background-color: #f9f6f2;
    font-weight: 600;
    color: #1a1a1a;
}

.legal-table td {
    color: #555;
}

.no-link {
    color: #555;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .value-split,
    .cta-split,
    .about-split,
    .approach-split,
    .team-split,
    .contact-split,
    .service-detail-split {
        flex-direction: column;
    }

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

    .hero-content,
    .intro-text,
    .value-content,
    .cta-content,
    .about-content,
    .approach-content,
    .team-content,
    .contact-info,
    .service-detail-content {
        padding: 2.5rem 2rem;
    }

    .hero-visual,
    .intro-visual,
    .value-visual,
    .cta-visual,
    .about-visual,
    .approach-visual,
    .team-visual,
    .contact-visual,
    .service-detail-image {
        min-height: 400px;
    }

    .service-card-split {
        flex-direction: column;
    }

    .service-image {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
    }

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

    .nav-toggle {
        display: flex;
    }

    .nav-container {
        flex-wrap: wrap;
    }

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

    .page-header h1 {
        font-size: 2.25rem;
    }

    .services-header h2,
    .testimonials h2,
    .values-section h2,
    .process-section h2,
    .faq-section h2 {
        font-size: 2rem;
    }

    .intro-text h2,
    .value-content h2,
    .cta-content h2,
    .about-content h2,
    .approach-content h2,
    .team-content h2,
    .contact-info h2,
    .service-detail-content h2 {
        font-size: 2rem;
    }

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

    .testimonial-grid,
    .values-grid,
    .process-steps,
    .faq-grid {
        flex-direction: column;
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .thanks-content {
        padding: 2rem 1.5rem;
    }

    .thanks-content h1 {
        font-size: 1.75rem;
    }

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

    .thanks-actions a {
        width: 100%;
        text-align: center;
    }

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