* {
    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-color: #ffffff;
}

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

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

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

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

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

.nav-links a:hover {
    color: #3498db;
}

.hero-split {
    display: flex;
    align-items: center;
    min-height: 85vh;
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    gap: 4rem;
}

.hero-left {
    flex: 1;
    padding-right: 2rem;
}

.hero-left h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #546e7a;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-right {
    flex: 1;
}

.hero-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 1.1rem;
}

.cta-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.3);
}

.split-reverse {
    display: flex;
    align-items: center;
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    gap: 4rem;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.split-content {
    flex: 1;
    padding-left: 2rem;
}

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

.split-content p {
    font-size: 1.1rem;
    color: #546e7a;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.services-preview {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
}

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

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

.section-header-centered p {
    font-size: 1.2rem;
    color: #546e7a;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

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

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

.service-card p {
    font-size: 1rem;
    color: #546e7a;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 1.5rem;
}

.btn-service {
    width: 100%;
    padding: 0.9rem 2rem;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}

.btn-service:hover {
    background-color: #1a252f;
}

.split-standard {
    display: flex;
    align-items: center;
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    gap: 4rem;
}

.feature-list {
    list-style: none;
    margin: 2rem 0;
}

.feature-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    color: #546e7a;
}

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

.cta-secondary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: transparent;
    color: #3498db;
    text-decoration: none;
    border: 2px solid #3498db;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
    margin-top: 1rem;
}

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

.testimonial-section {
    padding: 5rem 2rem;
    background-color: #2c3e50;
    color: #ffffff;
}

.testimonial-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

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

.testimonial-container cite {
    font-size: 1.1rem;
    font-style: normal;
    opacity: 0.9;
}

.process-split {
    display: flex;
    align-items: flex-start;
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    gap: 4rem;
}

.process-visual {
    flex: 1;
}

.process-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.process-content {
    flex: 1;
}

.process-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a252f;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: #3498db;
    min-width: 50px;
}

.step h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1a252f;
}

.step p {
    font-size: 1rem;
    color: #546e7a;
    line-height: 1.7;
}

.cta-banner {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: #ffffff;
}

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

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-primary-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: #ffffff;
    color: #667eea;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.cta-primary-large:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.form-section {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.form-intro {
    font-size: 1.1rem;
    color: #546e7a;
    margin-bottom: 2.5rem;
}

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 1.1rem 2rem;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-col p {
    color: #b0bec5;
    line-height: 1.7;
}

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

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

.footer-col ul li a {
    color: #b0bec5;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #37474f;
    text-align: center;
    color: #b0bec5;
}

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

.sticky-cta-btn {
    padding: 1rem 2rem;
    background-color: #e74c3c;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(231, 76, 60, 0.4);
    transition: all 0.3s;
}

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

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

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    line-height: 1.6;
}

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

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.btn-accept:hover {
    background-color: #229954;
}

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

.btn-reject:hover {
    background-color: #ffffff;
    color: #2c3e50;
}

.page-header {
    padding: 5rem 2rem 3rem;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

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

.page-header p {
    font-size: 1.3rem;
    opacity: 0.95;
}

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

.service-detail-item {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 5rem;
    padding: 3rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

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

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

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

.price-tag {
    font-size: 2.2rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 1.5rem;
}

.service-lead {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.service-detail-content h4 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.service-detail-content ul {
    list-style: none;
    padding: 0;
}

.service-detail-content ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #546e7a;
}

.service-detail-content ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

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

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

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

.additional-services h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a252f;
}

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

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

.additional-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.additional-item p {
    color: #546e7a;
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

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

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

.cta-section p {
    font-size: 1.2rem;
    color: #546e7a;
    margin-bottom: 2rem;
}

.about-intro-split {
    display: flex;
    align-items: center;
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    gap: 4rem;
}

.about-content {
    flex: 1;
}

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

.about-content p {
    font-size: 1.1rem;
    color: #546e7a;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.philosophy-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
    max-width: 1400px;
    margin: 0 auto;
}

.philosophy-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a252f;
}

.philosophy-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.philosophy-item {
    flex: 1 1 calc(50% - 2.5rem);
    min-width: 300px;
}

.philosophy-item h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.philosophy-item p {
    font-size: 1.05rem;
    color: #546e7a;
    line-height: 1.8;
}

.team-approach {
    display: flex;
    align-items: center;
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    gap: 4rem;
}

.team-image-left {
    flex: 1;
}

.team-image-left img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

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

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

.team-content-right p {
    font-size: 1.1rem;
    color: #546e7a;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.values-section {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

.values-container {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.value-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 1.7rem;
    margin-bottom: 1rem;
    color: #3498db;
}

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

.process-detail {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
    max-width: 1200px;
    margin: 0 auto;
}

.process-detail h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a252f;
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.timeline-marker {
    min-width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.timeline-content {
    flex: 1;
    padding-top: 0.5rem;
}

.timeline-content h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: #1a252f;
}

.timeline-content p {
    font-size: 1.05rem;
    color: #546e7a;
    line-height: 1.7;
}

.testimonials-about {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

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

.testimonials-grid blockquote {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #3498db;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #2c3e50;
}

.testimonials-grid cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    color: #546e7a;
}

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

.contact-info {
    flex: 1;
}

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

.contact-info p {
    font-size: 1.1rem;
    color: #546e7a;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

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

.contact-item p,
.contact-item a {
    font-size: 1.05rem;
    color: #546e7a;
    line-height: 1.7;
    text-decoration: none;
}

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

.contact-note {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.contact-note h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #1a252f;
}

.contact-note p {
    font-size: 1rem;
    color: #546e7a;
    line-height: 1.7;
}

.contact-map {
    flex: 1;
    position: relative;
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 2rem;
    border-radius: 0 0 8px 8px;
}

.map-overlay p {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.faq-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
    max-width: 1400px;
    margin: 0 auto;
}

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

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

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

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

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

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

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

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-icon svg {
    width: 80px;
    height: 80px;
    color: #27ae60;
}

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

.thanks-message {
    font-size: 1.2rem;
    color: #546e7a;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.thanks-details {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2.5rem;
}

.thanks-details h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.thanks-details p {
    font-size: 1.1rem;
    color: #3498db;
    font-weight: 600;
}

.next-steps {
    text-align: left;
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2.5rem;
}

.next-steps h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

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

.next-steps li {
    font-size: 1.05rem;
    color: #546e7a;
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.btn-primary {
    padding: 1rem 2rem;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

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

.btn-secondary {
    padding: 1rem 2rem;
    background-color: transparent;
    color: #3498db;
    text-decoration: none;
    border: 2px solid #3498db;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

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

.contact-reminder {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.contact-reminder p {
    font-size: 1rem;
    color: #546e7a;
    margin-bottom: 0.5rem;
}

.contact-reminder a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.contact-reminder a:hover {
    text-decoration: underline;
}

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

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

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

.last-updated {
    font-size: 1rem;
    color: #546e7a;
    margin-bottom: 3rem;
}

.legal-container h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.legal-container h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-container h4 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.legal-container p {
    font-size: 1.05rem;
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.legal-container li {
    font-size: 1.05rem;
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

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

.legal-container a:hover {
    color: #2980b9;
}

.contact-box {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    border-left: 4px solid #3498db;
}

.contact-box p {
    margin-bottom: 0.5rem;
}

.contact-box strong {
    color: #1a252f;
}

.legal-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 2px solid #e0e0e0;
}

.legal-footer p {
    font-size: 0.95rem;
    color: #7f8c8d;
    font-style: italic;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-size: 1rem;
}

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

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

.cookie-table td {
    color: #546e7a;
}

@media (max-width: 768px) {
    .hero-split,
    .split-reverse,
    .split-standard,
    .process-split,
    .about-intro-split,
    .team-approach,
    .contact-split {
        flex-direction: column;
    }

    .hero-left,
    .split-content {
        padding: 0;
    }

    .hero-left h1 {
        font-size: 2.2rem;
    }

    .nav-links {
        gap: 1rem;
    }

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

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

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

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

    .philosophy-item,
    .value-card,
    .additional-item,
    .faq-item {
        flex: 1 1 100%;
    }

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