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

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

.ad-disclosure {
    background: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    padding: 8px 20px;
    text-align: center;
    font-size: 0.875rem;
    color: #6c757d;
}

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: #ffffff;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-right {
    display: flex;
    gap: 30px;
}

.nav-right a {
    color: #495057;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: center;
}

.hero-content {
    flex: 1;
    padding: 80px 5% 80px 8%;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a252f;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 35px;
    color: #5a6c7d;
    max-width: 600px;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s, transform 0.2s;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

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

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

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

.features-alternating {
    padding: 80px 0;
}

.feature-row {
    display: flex;
    align-items: center;
    padding: 60px 5%;
}

.feature-row.reverse {
    flex-direction: row-reverse;
    background: #f8f9fa;
}

.feature-text {
    flex: 1;
    padding: 0 60px;
}

.feature-text h2 {
    font-size: 2.25rem;
    margin-bottom: 20px;
    color: #1a252f;
}

.feature-text p {
    font-size: 1.125rem;
    color: #5a6c7d;
    line-height: 1.8;
}

.feature-visual {
    flex: 1;
}

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

.services-preview {
    background: #f8f9fa;
    padding: 80px 5%;
}

.services-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.services-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #1a252f;
}

.services-intro p {
    font-size: 1.125rem;
    color: #5a6c7d;
}

.services-grid-split {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

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

.service-card p {
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 20px;
}

.service-link {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.service-link:hover {
    color: #2980b9;
}

.services-cta {
    text-align: center;
    margin-top: 50px;
}

.process-section {
    padding: 80px 5%;
    background: #ffffff;
}

.process-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #1a252f;
}

.process-split {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

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

.step-number {
    width: 60px;
    height: 60px;
    background: #3498db;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: #1a252f;
}

.process-step p {
    color: #5a6c7d;
    line-height: 1.7;
}

.trust-section-split {
    display: flex;
    align-items: center;
    padding: 80px 5%;
    background: #f8f9fa;
}

.trust-text {
    flex: 1;
    padding-right: 60px;
}

.trust-text h2 {
    font-size: 2.25rem;
    margin-bottom: 30px;
    color: #1a252f;
}

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

.trust-list li {
    padding: 12px 0 12px 35px;
    position: relative;
    font-size: 1.125rem;
    color: #5a6c7d;
    line-height: 1.7;
}

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

.trust-visual {
    flex: 1;
}

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

.testimonials-alternating {
    padding: 80px 5%;
}

.testimonials-alternating h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #1a252f;
}

.testimonial-row {
    display: flex;
    align-items: center;
    padding: 50px 0;
    gap: 60px;
}

.testimonial-row.reverse {
    flex-direction: row-reverse;
}

.testimonial-content {
    flex: 1;
}

.testimonial-content p {
    font-size: 1.25rem;
    font-style: italic;
    color: #495057;
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 600;
    color: #3498db;
}

.testimonial-image {
    flex: 1;
}

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

.form-section {
    padding: 80px 5%;
    background: #f8f9fa;
}

.form-container-split {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
}

.form-left {
    flex: 1;
}

.form-left h2 {
    font-size: 2.25rem;
    margin-bottom: 20px;
    color: #1a252f;
}

.form-left p {
    font-size: 1.125rem;
    color: #5a6c7d;
    margin-bottom: 30px;
    line-height: 1.7;
}

.form-benefits {
    margin-top: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.benefit-icon {
    color: #27ae60;
    font-weight: 700;
    font-size: 1.25rem;
    margin-right: 12px;
}

.benefit-item span:last-child {
    color: #495057;
}

.form-right {
    flex: 1;
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    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;
}

.final-cta-split {
    background: #1a252f;
    padding: 100px 5%;
    text-align: center;
}

.final-cta-content h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.final-cta-content p {
    color: #cbd5e0;
    font-size: 1.25rem;
    margin-bottom: 35px;
}

.footer-split {
    background: #2c3e50;
    color: #ffffff;
    padding: 60px 5% 30px;
}

.footer-main {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 220px;
}

.footer-col h3 {
    margin-bottom: 20px;
    font-size: 1.25rem;
}

.footer-col p {
    color: #cbd5e0;
    line-height: 1.8;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #4a5568;
    color: #cbd5e0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    padding: 25px 5%;
    box-shadow: 0 -2px 15px 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;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    color: #495057;
}

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

.cookie-btn.reject {
    background: #e9ecef;
    color: #495057;
}

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

.page-hero-split {
    display: flex;
    min-height: 400px;
    align-items: center;
    background: #f8f9fa;
}

.page-hero-content {
    flex: 1;
    padding: 60px 5% 60px 8%;
}

.page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #1a252f;
}

.page-hero-content p {
    font-size: 1.25rem;
    color: #5a6c7d;
}

.page-hero-image {
    flex: 1;
    overflow: hidden;
}

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

.about-story-split {
    display: flex;
    padding: 80px 5%;
    gap: 60px;
    align-items: center;
}

.story-text {
    flex: 1.2;
}

.story-text h2 {
    font-size: 2.25rem;
    margin-bottom: 25px;
    color: #1a252f;
}

.story-text p {
    font-size: 1.125rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-image {
    flex: 1;
}

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

.values-split {
    padding: 80px 5%;
    background: #f8f9fa;
}

.values-split h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #1a252f;
}

.values-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.value-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: center;
}

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

.value-card p {
    color: #5a6c7d;
    line-height: 1.7;
}

.expertise-alternating {
    padding: 80px 0;
}

.expertise-row {
    display: flex;
    align-items: center;
    padding: 50px 5%;
    gap: 60px;
}

.expertise-row.reverse {
    flex-direction: row-reverse;
    background: #f8f9fa;
}

.expertise-text {
    flex: 1;
}

.expertise-text h2 {
    font-size: 2.25rem;
    margin-bottom: 20px;
    color: #1a252f;
}

.expertise-text p {
    font-size: 1.125rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 15px;
}

.expertise-visual {
    flex: 1;
}

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

.team-section {
    padding: 80px 5%;
    background: #ffffff;
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #1a252f;
}

.team-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.team-description p {
    font-size: 1.125rem;
    color: #5a6c7d;
    line-height: 1.8;
}

.team-stats-split {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-item {
    text-align: center;
    min-width: 200px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.125rem;
    color: #5a6c7d;
}

.commitment-split {
    display: flex;
    align-items: center;
    padding: 80px 5%;
    background: #f8f9fa;
    gap: 60px;
}

.commitment-visual {
    flex: 1;
}

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

.commitment-text {
    flex: 1;
}

.commitment-text h2 {
    font-size: 2.25rem;
    margin-bottom: 30px;
    color: #1a252f;
}

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

.commitment-list li {
    padding: 12px 0 12px 35px;
    position: relative;
    font-size: 1.125rem;
    color: #5a6c7d;
    line-height: 1.7;
}

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

.services-detailed {
    padding: 60px 0;
}

.service-detail-split {
    display: flex;
    align-items: center;
    padding: 60px 5%;
    gap: 60px;
}

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

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

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

.service-detail-content p {
    font-size: 1.125rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 25px;
}

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

.service-features li {
    padding: 10px 0 10px 35px;
    position: relative;
    color: #5a6c7d;
    line-height: 1.6;
}

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

.service-pricing {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 6px;
    margin-bottom: 25px;
}

.price-main {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 8px;
}

.price-note {
    color: #6c757d;
    font-size: 0.95rem;
}

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

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

.service-process {
    padding: 80px 5%;
    background: #f8f9fa;
}

.service-process h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #1a252f;
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.timeline-marker {
    width: 50px;
    height: 50px;
    background: #3498db;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
}

.timeline-content h3 {
    font-size: 1.375rem;
    margin-bottom: 10px;
    color: #1a252f;
}

.timeline-content p {
    color: #5a6c7d;
    line-height: 1.7;
}

.materials-section {
    padding: 80px 5%;
}

.materials-split {
    display: flex;
    align-items: center;
    gap: 60px;
}

.materials-text {
    flex: 1;
}

.materials-text h2 {
    font-size: 2.25rem;
    margin-bottom: 25px;
    color: #1a252f;
}

.materials-text p {
    font-size: 1.125rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 20px;
}

.materials-list {
    list-style: none;
    margin-bottom: 20px;
}

.materials-list li {
    padding: 10px 0 10px 35px;
    position: relative;
    color: #5a6c7d;
    line-height: 1.7;
}

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

.materials-visual {
    flex: 1;
}

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

.guarantee-section {
    padding: 80px 5%;
    background: #f8f9fa;
}

.guarantee-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1a252f;
}

.guarantee-content-split {
    display: flex;
    align-items: center;
    gap: 60px;
}

.guarantee-text {
    flex: 1;
}

.guarantee-text p {
    font-size: 1.125rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 20px;
}

.guarantee-visual {
    flex: 1;
}

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

.contact-main-split {
    display: flex;
    padding: 80px 5%;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.25rem;
    margin-bottom: 40px;
    color: #1a252f;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.contact-item p {
    color: #5a6c7d;
    line-height: 1.7;
}

.contact-note {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 6px;
    margin-top: 30px;
}

.contact-note p {
    color: #495057;
    line-height: 1.7;
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-faq-split {
    padding: 80px 5%;
    background: #f8f9fa;
}

.contact-faq-split h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #1a252f;
}

.faq-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.faq-item {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    flex: 1;
    min-width: 300px;
    max-width: 380px;
}

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

.faq-item p {
    color: #5a6c7d;
    line-height: 1.7;
}

.contact-regions {
    padding: 80px 5%;
}

.contact-regions h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1a252f;
}

.regions-content-split {
    display: flex;
    align-items: center;
    gap: 60px;
}

.regions-text {
    flex: 1;
}

.regions-text p {
    font-size: 1.125rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 20px;
}

.regions-visual {
    flex: 1;
}

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

.thanks-section {
    padding: 100px 5%;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #27ae60;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 30px;
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a252f;
}

.thanks-message {
    font-size: 1.25rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 30px;
}

.thanks-service {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 40px;
    font-size: 1.125rem;
    color: #495057;
}

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

.thanks-next h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #1a252f;
}

.next-steps {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    text-align: left;
}

.next-step {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    display: flex;
    gap: 20px;
}

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

.next-step p {
    color: #5a6c7d;
    line-height: 1.7;
    flex: 1;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.thanks-contact {
    color: #6c757d;
}

.thanks-contact p {
    margin-bottom: 5px;
}

.legal-page {
    padding: 80px 5%;
    background: #f8f9fa;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 60px;
    border-radius: 8px;
}

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

.legal-updated {
    color: #6c757d;
    margin-bottom: 40px;
    font-size: 0.95rem;
}

.legal-container h2 {
    font-size: 1.75rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-container h3 {
    font-size: 1.375rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-container p {
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-container ul {
    margin-bottom: 20px;
    margin-left: 25px;
}

.legal-container ul li {
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 10px;
}

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

.legal-container a:hover {
    text-decoration: underline;
}

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

.cookies-table th,
.cookies-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #dee2e6;
}

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

.cookies-table td {
    color: #5a6c7d;
}

@media (max-width: 768px) {
    .hero-split,
    .feature-row,
    .page-hero-split,
    .about-story-split,
    .expertise-row,
    .commitment-split,
    .service-detail-split,
    .materials-split,
    .guarantee-content-split,
    .contact-main-split,
    .regions-content-split,
    .form-container-split,
    .trust-section-split,
    .testimonial-row {
        flex-direction: column;
    }

    .feature-row.reverse,
    .expertise-row.reverse,
    .service-detail-split.reverse,
    .testimonial-row.reverse {
        flex-direction: column;
    }

    .hero-content h1,
    .page-hero-content h1 {
        font-size: 2rem;
    }

    .nav-right {
        flex-wrap: wrap;
        gap: 15px;
        font-size: 0.9rem;
    }

    .feature-text,
    .expertise-text,
    .trust-text,
    .commitment-text,
    .materials-text {
        padding: 0;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: space-between;
    }

    .legal-container {
        padding: 30px 20px;
    }
}