* {
    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: #2c3e50;
    background: #ffffff;
}

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

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

a:hover {
    opacity: 0.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

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

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

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

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

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

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

.btn-cookie-accept:hover {
    background: #27ae60;
}

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

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

.main-nav {
    background: #ffffff;
    padding: 1.2rem 2rem;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

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

.nav-menu a {
    color: #2c3e50;
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    border-bottom-color: #3498db;
}

.hero-split {
    display: flex;
    flex-wrap: wrap;
    min-height: 85vh;
    align-items: center;
}

.hero-content-left {
    flex: 1;
    min-width: 320px;
    padding: 4rem 3rem;
    background: #f8f9fa;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #555;
    line-height: 1.5;
}

.hero-visual-right {
    flex: 1;
    min-width: 320px;
}

.hero-visual-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

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

.btn-primary:hover {
    background: #2980b9;
    opacity: 1;
}

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

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

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

.intro-visual-left {
    flex: 1;
    min-width: 320px;
}

.intro-visual-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 450px;
}

.intro-content-right {
    flex: 1;
    min-width: 320px;
    padding: 4rem 3rem;
}

.intro-content-right h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.intro-content-right p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #444;
}

.services-grid-section {
    padding: 5rem 2rem;
    background: #fafafa;
}

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

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

.section-header-centered p {
    font-size: 1.15rem;
    color: #666;
}

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

.service-card-split {
    display: flex;
    flex-wrap: wrap;
    background: #ffffff;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    border-radius: 8px;
    overflow: hidden;
}

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

.service-image {
    flex: 1;
    min-width: 320px;
}

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

.service-details {
    flex: 1;
    min-width: 320px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.service-details p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #555;
}

.price-tag {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2ecc71;
    margin: 1.5rem 0;
}

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

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

.trust-split {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 5rem 0;
}

.trust-content-left {
    flex: 1;
    min-width: 320px;
    padding: 3rem;
}

.trust-content-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.trust-content-left p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #444;
}

.trust-visual-right {
    flex: 1;
    min-width: 320px;
}

.trust-visual-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 450px;
}

.extra-services-split-dark {
    display: flex;
    flex-wrap: wrap;
    background: #2c3e50;
    color: #ffffff;
}

.extra-services-visual {
    flex: 1;
    min-width: 320px;
}

.extra-services-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 600px;
}

.extra-services-content {
    flex: 1;
    min-width: 320px;
    padding: 4rem 3rem;
}

.extra-services-content h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

.extra-service-item {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.extra-service-item:last-child {
    border-bottom: none;
}

.extra-service-item h4 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.extra-service-item p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.testimonial-split-light {
    display: flex;
    flex-wrap: wrap;
    padding: 5rem 2rem;
    background: #ecf0f1;
    gap: 3rem;
    justify-content: center;
}

.testimonial-content {
    flex: 1;
    min-width: 300px;
    max-width: 550px;
    padding: 2.5rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.testimonial-content blockquote {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #333;
    font-style: italic;
}

.testimonial-content cite {
    display: block;
    margin-top: 1.5rem;
    font-style: normal;
    font-weight: 600;
    color: #666;
}

.cta-split-highlight {
    display: flex;
    flex-wrap: wrap;
    background: #3498db;
    color: #ffffff;
    padding: 5rem 0;
}

.cta-text-left {
    flex: 1;
    min-width: 320px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-text-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-text-left p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.cta-form-right {
    flex: 1;
    min-width: 320px;
    padding: 3rem;
    background: rgba(255,255,255,0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 1rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: 2px solid #2ecc71;
}

.btn-submit {
    padding: 1rem 2rem;
    background: #2ecc71;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #27ae60;
}

.why-us-split {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 5rem 0;
    background: #f8f9fa;
}

.why-visual {
    flex: 1;
    min-width: 320px;
}

.why-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

.why-content {
    flex: 1;
    min-width: 320px;
    padding: 3rem;
}

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

.why-list {
    list-style: none;
}

.why-list li {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    color: #444;
}

.why-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-weight: 700;
    font-size: 1.3rem;
}

.site-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

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

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

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

.footer-column p {
    color: #bbb;
    line-height: 1.6;
}

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

.footer-column ul li {
    margin-bottom: 0.6rem;
}

.footer-column ul li a {
    color: #bbb;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
    color: #888;
}

.page-hero-split {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    min-height: 60vh;
    background: #f8f9fa;
}

.page-hero-content {
    flex: 1;
    min-width: 320px;
    padding: 4rem 3rem;
}

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

.page-hero-content p {
    font-size: 1.2rem;
    color: #555;
}

.page-hero-visual {
    flex: 1;
    min-width: 320px;
}

.page-hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 450px;
}

.story-split-alt {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 5rem 0;
}

.story-visual {
    flex: 1;
    min-width: 320px;
}

.story-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 450px;
}

.story-content {
    flex: 1;
    min-width: 320px;
    padding: 3rem;
}

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

.story-content p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #444;
}

.philosophy-split-reverse {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    align-items: center;
    background: #f8f9fa;
    padding: 5rem 0;
}

.philosophy-content {
    flex: 1;
    min-width: 320px;
    padding: 3rem;
}

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

.philosophy-content p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #444;
}

.philosophy-visual {
    flex: 1;
    min-width: 320px;
}

.philosophy-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 450px;
}

.team-section-split {
    padding: 5rem 2rem;
    background: #ffffff;
}

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

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

.team-intro p {
    font-size: 1.15rem;
    color: #666;
}

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

.team-member-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.team-member-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-member-card h3 {
    font-size: 1.4rem;
    margin: 1.5rem 1.5rem 0.5rem;
    color: #1a1a1a;
}

.team-member-card p {
    font-size: 1rem;
    color: #666;
    padding: 0 1.5rem 1.5rem;
}

.values-split-dark {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    background: #2c3e50;
    color: #ffffff;
}

.values-visual {
    flex: 1;
    min-width: 320px;
}

.values-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

.values-content {
    flex: 1;
    min-width: 320px;
    padding: 4rem 3rem;
}

.values-content h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

.values-list {
    list-style: none;
}

.values-list li {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.values-list strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: #3498db;
}

.cta-about-split {
    padding: 5rem 2rem;
    background: #ecf0f1;
    text-align: center;
}

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

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

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

.services-hero-split {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    min-height: 60vh;
    background: #3498db;
    color: #ffffff;
}

.services-hero-content {
    flex: 1;
    min-width: 320px;
    padding: 4rem 3rem;
}

.services-hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.services-hero-content p {
    font-size: 1.2rem;
    line-height: 1.6;
}

.services-hero-visual {
    flex: 1;
    min-width: 320px;
}

.services-hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 450px;
}

.service-detail-split {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 5rem 0;
}

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

.service-detail-visual {
    flex: 1;
    min-width: 320px;
}

.service-detail-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

.service-detail-content {
    flex: 1;
    min-width: 320px;
    padding: 3rem;
}

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

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

.service-detail-content p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #444;
}

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

.service-detail-content ul li {
    font-size: 1.05rem;
    margin-bottom: 0.7rem;
    color: #555;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2ecc71;
    margin: 2rem 0;
}

.additional-services-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

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

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

.additional-header p {
    font-size: 1.15rem;
    color: #666;
}

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

.additional-service-card {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.additional-service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.additional-service-card p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #555;
}

.faq-split-section {
    padding: 5rem 2rem;
    background: #ffffff;
}

.faq-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.faq-intro h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
}

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

.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e8e8e8;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

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

.cta-services-split {
    display: flex;
    flex-wrap: wrap;
    background: #2ecc71;
    color: #ffffff;
    padding: 5rem 0;
}

.cta-services-content {
    flex: 1;
    min-width: 320px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-services-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

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

.cta-services-form {
    flex: 1;
    min-width: 320px;
    padding: 3rem;
    background: rgba(255,255,255,0.15);
}

.contact-hero-split {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    min-height: 60vh;
    background: #2ecc71;
    color: #ffffff;
}

.contact-hero-content {
    flex: 1;
    min-width: 320px;
    padding: 4rem 3rem;
}

.contact-hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

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

.contact-hero-visual {
    flex: 1;
    min-width: 320px;
}

.contact-hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 450px;
}

.contact-info-split {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 5rem 0;
}

.contact-details {
    flex: 1;
    min-width: 320px;
    padding: 3rem;
}

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

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

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

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

.contact-item a {
    color: #3498db;
}

.contact-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #fff3cd;
    border-left: 4px solid #ffc107;
}

.contact-note p {
    color: #856404;
}

.contact-visual {
    flex: 1;
    min-width: 320px;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

.response-time-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

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

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

.response-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.response-item {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.response-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

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

.thanks-split-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    min-height: 70vh;
    padding: 5rem 0;
}

.thanks-content {
    flex: 1;
    min-width: 320px;
    padding: 3rem;
}

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #2ecc71;
}

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

.thanks-content p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #555;
}

.thanks-next-steps {
    margin: 3rem 0;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.thanks-next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.thanks-next-steps ol {
    padding-left: 1.5rem;
}

.thanks-next-steps li {
    font-size: 1.05rem;
    margin-bottom: 0.8rem;
    color: #555;
}

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

.thanks-visual {
    flex: 1;
    min-width: 320px;
}

.thanks-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

.legal-page-container {
    padding: 4rem 2rem;
    background: #ffffff;
}

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

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

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

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #34495e;
}

.legal-content h4 {
    font-size: 1.2rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: #34495e;
}

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

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

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

.legal-content a {
    color: #3498db;
    text-decoration: underline;
}

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

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

.cookie-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

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

@media (max-width: 768px) {
    .nav-menu {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .hero-content-left h1,
    .page-hero-content h1,
    .services-hero-content h1,
    .contact-hero-content h1,
    .thanks-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle,
    .page-hero-content p,
    .services-hero-content p,
    .contact-hero-content p {
        font-size: 1rem;
    }

    .intro-content-right h2,
    .trust-content-left h2,
    .story-content h2,
    .philosophy-content h2,
    .why-content h2,
    .values-content h2,
    .service-detail-content h2,
    .contact-details h2,
    .cta-text-left h2,
    .cta-services-content h2 {
        font-size: 1.8rem;
    }

    .section-header-centered h2,
    .team-intro h2,
    .additional-header h2,
    .faq-intro h2,
    .response-content h2,
    .legal-content h1 {
        font-size: 2rem;
    }

    .hero-visual-right img,
    .intro-visual-left img,
    .trust-visual-right img,
    .page-hero-visual img,
    .story-visual img,
    .philosophy-visual img,
    .why-visual img,
    .values-visual img,
    .services-hero-visual img,
    .service-detail-visual img,
    .contact-hero-visual img,
    .contact-visual img,
    .thanks-visual img,
    .extra-services-visual img {
        min-height: 300px;
    }

    .service-image img {
        min-height: 250px;
    }

    .cookie-content {
        flex-direction: column;
    }

    .cookie-actions {
        width: 100%;
    }

    .btn-cookie-accept,
    .btn-cookie-reject {
        flex: 1;
    }
}

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

    .nav-menu {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .hero-content-left,
    .intro-content-right,
    .trust-content-left,
    .page-hero-content,
    .story-content,
    .philosophy-content,
    .why-content,
    .values-content,
    .service-detail-content,
    .contact-details,
    .thanks-content {
        padding: 2rem 1.5rem;
    }

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

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

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