* {
    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;
}

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

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

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

.nav-center {
    display: flex;
    gap: 2.5rem;
}

.nav-center a {
    color: #5f6368;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-center a:hover {
    color: #1a73e8;
}

.nav-right .ad-label {
    font-size: 0.75rem;
    color: #80868b;
    background: #f1f3f4;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
}

.hero-split {
    display: flex;
    min-height: 90vh;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem 3rem 4rem 2rem;
    background: #fafbfc;
}

.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    color: #202124;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #5f6368;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a73e8;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #5f6368;
    margin-top: 0.5rem;
}

.cta-button {
    display: inline-block;
    background: #1a73e8;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.2s;
}

.cta-button:hover {
    background: #1557b0;
}

.hero-right {
    flex: 1;
    position: relative;
    overflow: hidden;
    background: #34a853;
}

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

.trust-section {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.trust-left {
    flex: 1;
    background: #e8f0fe;
}

.trust-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trust-right {
    flex: 1;
    padding: 5rem 3rem;
    background: #ffffff;
}

.trust-right h2 {
    font-size: 2.5rem;
    color: #202124;
    margin-bottom: 3rem;
    line-height: 1.3;
}

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

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

.trust-item p {
    color: #5f6368;
    line-height: 1.7;
    font-size: 1.05rem;
}

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

.section-header p {
    font-size: 1.1rem;
    color: #5f6368;
}

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

.service-card {
    flex: 1 1 calc(50% - 1rem);
    display: flex;
    background: #ffffff;
    border: 1px solid #e8ecef;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.service-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.service-image {
    flex: 0 0 45%;
    background: #f1f3f4;
}

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

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

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

.service-content p {
    color: #5f6368;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.price-label {
    font-size: 0.9rem;
    color: #80868b;
}

.price-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a73e8;
}

.select-service {
    background: #1a73e8;
    color: #ffffff;
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.select-service:hover {
    background: #1557b0;
}

.form-section {
    background: #f8f9fa;
    padding: 5rem 0;
    margin-top: 5rem;
}

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

.form-left {
    flex: 1;
}

.form-left h2 {
    font-size: 2.5rem;
    color: #202124;
    margin-bottom: 1.5rem;
}

.form-left p {
    font-size: 1.1rem;
    color: #5f6368;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

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

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.benefit-icon {
    width: 24px;
    height: 24px;
    background: #34a853;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.benefit-item span:last-child {
    color: #5f6368;
    font-size: 1.05rem;
}

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

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

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

.form-group label {
    font-weight: 600;
    color: #202124;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 1px solid #dadce0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s;
}

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

.submit-button {
    background: #1a73e8;
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.submit-button:hover {
    background: #1557b0;
}

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

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

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

.testimonial-card {
    flex: 1;
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid #1a73e8;
}

.testimonial-text {
    color: #5f6368;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: #202124;
}

.author-location {
    font-size: 0.9rem;
    color: #80868b;
    margin-top: 0.3rem;
}

.main-footer {
    background: #202124;
    color: #e8eaed;
    padding: 3rem 0 1rem;
    margin-top: 5rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-column h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

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

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

.footer-column ul li a {
    color: #9aa0a6;
    text-decoration: none;
    transition: color 0.2s;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 2rem 1.5rem;
    border-top: 1px solid #3c4043;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    color: #9aa0a6;
    line-height: 1.6;
}

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

.footer-bottom p {
    color: #9aa0a6;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #202124;
    color: #e8eaed;
    padding: 1.5rem;
    z-index: 2000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

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

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

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

.cookie-content a {
    color: #8ab4f8;
}

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

.cookie-accept,
.cookie-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.cookie-accept {
    background: #1a73e8;
    color: #ffffff;
}

.cookie-accept:hover {
    background: #1557b0;
}

.cookie-reject {
    background: #5f6368;
    color: #ffffff;
}

.cookie-reject:hover {
    background: #4a4e52;
}

.page-hero {
    max-width: 1400px;
    margin: 3rem auto;
    display: flex;
    gap: 3rem;
    padding: 0 2rem;
    align-items: center;
}

.page-hero .hero-left {
    flex: 1;
    background: none;
    padding: 0;
}

.page-hero .hero-left h1 {
    font-size: 2.8rem;
    color: #202124;
    margin-bottom: 1.5rem;
}

.page-hero .hero-left p {
    font-size: 1.15rem;
    color: #5f6368;
    line-height: 1.7;
}

.page-hero .hero-right {
    flex: 1;
    background: #e8f0fe;
}

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

.story-content h2 {
    font-size: 2.5rem;
    color: #202124;
    margin-bottom: 2rem;
}

.story-content p {
    font-size: 1.1rem;
    color: #5f6368;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.values-grid {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    flex: 1;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
}

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

.value-card p {
    font-size: 1rem;
    line-height: 1.6;
}

.team-section {
    max-width: 1400px;
    margin: 5rem auto;
    display: flex;
    gap: 3rem;
    padding: 0 2rem;
}

.team-left {
    flex: 1;
    padding: 2rem 0;
}

.team-left h2 {
    font-size: 2.3rem;
    color: #202124;
    margin-bottom: 1.5rem;
}

.team-left p {
    font-size: 1.1rem;
    color: #5f6368;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.team-right {
    flex: 1;
    background: #f1f3f4;
}

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

.coverage-section {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 3rem 2rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.coverage-section h2 {
    font-size: 2.5rem;
    color: #202124;
    margin-bottom: 2rem;
}

.coverage-split {
    display: flex;
    gap: 3rem;
}

.coverage-left {
    flex: 1;
}

.coverage-left p {
    font-size: 1.1rem;
    color: #5f6368;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.coverage-right {
    flex: 1;
}

.coverage-list h3 {
    font-size: 1.3rem;
    color: #1a73e8;
    margin-bottom: 0.8rem;
}

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

.coverage-list ul li {
    padding: 0.5rem 0;
    color: #5f6368;
    border-bottom: 1px solid #dadce0;
}

.page-header {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
    text-align: center;
}

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

.page-header p {
    font-size: 1.2rem;
    color: #5f6368;
    max-width: 800px;
    margin: 0 auto;
}

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

.service-detail {
    display: flex;
    gap: 3rem;
    margin-bottom: 5rem;
    align-items: center;
}

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

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

.service-detail-left img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.service-detail-left h2 {
    font-size: 2.3rem;
    color: #202124;
    margin-bottom: 1.5rem;
}

.service-detail-left p,
.service-detail-right p {
    font-size: 1.1rem;
    color: #5f6368;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-detail-left h3,
.service-detail-right h3 {
    font-size: 1.3rem;
    color: #1a73e8;
    margin: 2rem 0 1rem;
}

.service-detail-left ul,
.service-detail-right ul {
    list-style: none;
    padding-left: 0;
}

.service-detail-left ul li,
.service-detail-right ul li {
    padding: 0.7rem 0 0.7rem 2rem;
    color: #5f6368;
    position: relative;
}

.service-detail-left ul li:before,
.service-detail-right ul li:before {
    content: "•";
    position: absolute;
    left: 0.5rem;
    color: #1a73e8;
    font-weight: 700;
}

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

.service-detail-right h2 {
    font-size: 2.3rem;
    color: #202124;
    margin-bottom: 1.5rem;
}

.service-detail-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 0.8rem;
    margin: 2rem 0 1.5rem;
}

.price-from {
    font-size: 1rem;
    color: #80868b;
}

.price-amount {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a73e8;
}

.service-cta {
    display: inline-block;
    background: #1a73e8;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.2s;
}

.service-cta:hover {
    background: #1557b0;
}

.guarantee-section {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 3rem 2rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.guarantee-section h2 {
    font-size: 2.5rem;
    color: #202124;
    text-align: center;
    margin-bottom: 3rem;
}

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

.guarantee-card {
    flex: 1;
    padding: 2rem;
    background: #ffffff;
    border-radius: 8px;
    border-top: 4px solid #1a73e8;
}

.guarantee-card h3 {
    font-size: 1.4rem;
    color: #202124;
    margin-bottom: 1rem;
}

.guarantee-card p {
    color: #5f6368;
    line-height: 1.6;
}

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

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

.contact-header p {
    font-size: 1.2rem;
    color: #5f6368;
}

.contact-split {
    display: flex;
    gap: 4rem;
}

.contact-info-section {
    flex: 1;
}

.info-block {
    margin-bottom: 3rem;
}

.info-block h2 {
    font-size: 1.8rem;
    color: #1a73e8;
    margin-bottom: 1rem;
}

.info-block p {
    font-size: 1.1rem;
    color: #5f6368;
    margin-bottom: 0.5rem;
}

.email-display {
    font-weight: 600;
    color: #202124;
}

.email-note {
    font-size: 0.95rem;
    color: #80868b;
    font-style: italic;
}

.schedule {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.schedule-row {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem;
    background: #f8f9fa;
    border-radius: 4px;
}

.schedule-row .day {
    font-weight: 600;
    color: #202124;
}

.schedule-row .hours {
    color: #5f6368;
}

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

.coverage-list-simple li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    color: #5f6368;
    position: relative;
}

.coverage-list-simple li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #34a853;
    font-weight: 700;
}

.contact-map-section {
    flex: 1;
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
}

.map-placeholder p {
    font-size: 1.1rem;
    color: #5f6368;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.map-placeholder a {
    color: #1a73e8;
    font-weight: 600;
}

.quick-info {
    margin-top: 2.5rem;
    padding: 2rem;
    background: #ffffff;
    border-radius: 8px;
}

.quick-info h3 {
    font-size: 1.4rem;
    color: #202124;
    margin-bottom: 1rem;
}

.quick-info ul {
    list-style: none;
    padding-left: 0;
}

.quick-info ul li {
    padding: 0.6rem 0 0.6rem 1.8rem;
    color: #5f6368;
    position: relative;
}

.quick-info ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #34a853;
    font-weight: 700;
}

.contact-cta-section {
    text-align: center;
    margin: 5rem 0;
    padding: 3rem;
    background: #e8f0fe;
    border-radius: 8px;
}

.contact-cta-section h2 {
    font-size: 2.3rem;
    color: #202124;
    margin-bottom: 1rem;
}

.contact-cta-section p {
    font-size: 1.1rem;
    color: #5f6368;
    margin-bottom: 2rem;
}

.contact-cta-button {
    display: inline-block;
    background: #1a73e8;
    color: #ffffff;
    padding: 1.2rem 3rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background 0.2s;
}

.contact-cta-button:hover {
    background: #1557b0;
}

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

.thanks-content {
    text-align: center;
}

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

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

.thanks-message {
    font-size: 1.2rem;
    color: #5f6368;
    line-height: 1.7;
    margin-bottom: 3rem;
}

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

.next-steps h2 {
    font-size: 2rem;
    color: #202124;
    margin-bottom: 2rem;
    text-align: center;
}

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

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

.step-number {
    width: 40px;
    height: 40px;
    background: #1a73e8;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-item h3 {
    font-size: 1.3rem;
    color: #202124;
    margin-bottom: 0.5rem;
}

.step-item p {
    color: #5f6368;
    line-height: 1.6;
}

.thanks-info {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
    text-align: left;
    margin: 3rem 0;
}

.thanks-info h3 {
    font-size: 1.5rem;
    color: #202124;
    margin-bottom: 1.5rem;
}

.thanks-info ul {
    list-style: none;
    padding-left: 0;
}

.thanks-info ul li {
    padding: 0.7rem 0 0.7rem 2rem;
    color: #5f6368;
    position: relative;
}

.thanks-info ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #34a853;
    font-weight: 700;
}

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

.back-button,
.services-link {
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.2s, color 0.2s;
}

.back-button {
    background: #1a73e8;
    color: #ffffff;
}

.back-button:hover {
    background: #1557b0;
}

.services-link {
    background: #ffffff;
    color: #1a73e8;
    border: 2px solid #1a73e8;
}

.services-link:hover {
    background: #e8f0fe;
}

.thanks-contact {
    margin-top: 3rem;
}

.thanks-contact p {
    color: #5f6368;
    font-size: 1rem;
}

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

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

.legal-intro {
    font-size: 0.95rem;
    color: #80868b;
    margin-bottom: 3rem;
}

.legal-container h2 {
    font-size: 1.8rem;
    color: #1a73e8;
    margin: 2.5rem 0 1rem;
}

.legal-container h3 {
    font-size: 1.3rem;
    color: #202124;
    margin: 1.5rem 0 0.8rem;
}

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

.legal-container ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-container ul li {
    color: #5f6368;
    margin-bottom: 0.7rem;
    line-height: 1.6;
}

.legal-container a {
    color: #1a73e8;
    text-decoration: none;
}

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

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

.cookie-table thead {
    background: #f8f9fa;
}

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

.cookie-table th {
    font-weight: 600;
    color: #202124;
}

.cookie-table td {
    color: #5f6368;
}

@media (max-width: 968px) {
    .hero-split,
    .trust-section,
    .form-split,
    .testimonials-grid,
    .page-hero,
    .team-section,
    .coverage-split,
    .service-detail,
    .values-grid,
    .guarantee-grid,
    .contact-split {
        flex-direction: column;
    }

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

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

    .service-image {
        flex: 0 0 auto;
        height: 250px;
    }

    .nav-center {
        gap: 1.5rem;
    }

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

    .hero-stats {
        gap: 1.5rem;
    }

    .thanks-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .back-button,
    .services-link {
        text-align: center;
    }
}