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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2d3436;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1000;
    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;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

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

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

.btn-accept {
    background: #00b894;
    color: #ffffff;
}

.btn-accept:hover {
    background: #00a383;
}

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

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

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4rem;
    background: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3436;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #636e72;
    padding: 0.4rem 0.8rem;
    background: #f8f9fa;
    border-radius: 3px;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    color: #2d3436;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.main-nav a:hover {
    color: #0984e3;
}

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

.hero-left,
.hero-right {
    flex: 1;
}

.hero-left {
    display: flex;
    align-items: center;
    padding: 4rem;
    background: #ffffff;
}

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

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

.hero-content p {
    font-size: 1.2rem;
    color: #636e72;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-right {
    background-color: #dfe6e9;
    position: relative;
    overflow: hidden;
}

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

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

.cta-primary:hover {
    background: #0770c4;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(9,132,227,0.3);
}

.intro-split {
    display: flex;
}

.intro-left,
.intro-right {
    flex: 1;
}

.intro-left {
    background-color: #dfe6e9;
    position: relative;
    overflow: hidden;
}

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

.intro-right {
    padding: 5rem 4rem;
    background: #ffffff;
}

.intro-right h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2d3436;
    font-weight: 700;
}

.intro-right p {
    font-size: 1.1rem;
    color: #636e72;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.services-split {
    display: flex;
    background: #f8f9fa;
}

.services-left {
    flex: 0.8;
    padding: 5rem 4rem;
}

.services-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2d3436;
    font-weight: 700;
}

.services-left p {
    font-size: 1.1rem;
    color: #636e72;
    line-height: 1.8;
}

.services-right {
    flex: 1.2;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

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

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2d3436;
}

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

.service-card .price {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #0984e3;
    margin-top: 1rem;
}

.approach-split {
    display: flex;
}

.approach-left,
.approach-right {
    flex: 1;
}

.approach-left {
    padding: 5rem 4rem;
    background: #ffffff;
}

.approach-left h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #2d3436;
    font-weight: 700;
}

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

.step h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2d3436;
}

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

.approach-right {
    background-color: #dfe6e9;
    position: relative;
    overflow: hidden;
}

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

.testimonials-full {
    padding: 5rem 4rem;
    background: #f8f9fa;
}

.testimonials-full h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #2d3436;
    text-align: center;
    font-weight: 700;
}

.testimonial-grid {
    display: flex;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial {
    flex: 1;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.testimonial p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #2d3436;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial cite {
    font-size: 0.95rem;
    color: #636e72;
    font-style: normal;
    font-weight: 600;
}

.form-split {
    display: flex;
}

.form-left,
.form-right {
    flex: 1;
}

.form-left {
    padding: 5rem 4rem;
    background: #0984e3;
    color: #ffffff;
}

.form-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.form-left p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.form-right {
    padding: 5rem 4rem;
    background: #ffffff;
}

.contact-form {
    max-width: 500px;
}

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

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

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

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

.btn-submit {
    padding: 1rem 2.5rem;
    background: #0984e3;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #0770c4;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(9,132,227,0.3);
}

.location-split {
    display: flex;
}

.location-left,
.location-right {
    flex: 1;
}

.location-left {
    background-color: #dfe6e9;
    position: relative;
    overflow: hidden;
}

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

.location-right {
    padding: 5rem 4rem;
    background: #ffffff;
}

.location-right h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2d3436;
    font-weight: 700;
}

.location-right p {
    font-size: 1.1rem;
    color: #636e72;
    line-height: 1.8;
    margin-bottom: 2rem;
}

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

.areas-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #e8e8e8;
    font-size: 1.05rem;
    color: #2d3436;
}

.areas-list li:last-child {
    border-bottom: none;
}

.footer-split {
    display: flex;
    padding: 3rem 4rem;
    background: #2d3436;
    color: #ffffff;
}

.footer-left,
.footer-right {
    flex: 1;
}

.footer-brand {
    margin-bottom: 1.5rem;
}

.footer-brand strong {
    font-size: 1.3rem;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    font-size: 0.95rem;
    color: #b2bec3;
}

.footer-contact p {
    font-size: 0.95rem;
    color: #b2bec3;
    margin-bottom: 0.5rem;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.footer-nav {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-nav a {
    color: #b2bec3;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #ffffff;
}

.footer-copy {
    font-size: 0.85rem;
    color: #636e72;
}

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

.page-hero-left {
    flex: 0.8;
    padding: 5rem 4rem;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.page-hero-left h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #2d3436;
    font-weight: 700;
}

.page-hero-left p {
    font-size: 1.2rem;
    color: #636e72;
    line-height: 1.8;
}

.page-hero-right {
    flex: 1.2;
    background-color: #dfe6e9;
    position: relative;
    overflow: hidden;
}

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

.content-split {
    display: flex;
}

.content-left,
.content-right {
    flex: 1;
}

.content-left {
    padding: 5rem 4rem;
    background: #f8f9fa;
}

.content-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2d3436;
    font-weight: 700;
}

.content-left p {
    font-size: 1.05rem;
    color: #636e72;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.content-right {
    background-color: #dfe6e9;
    position: relative;
    overflow: hidden;
}

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

.methodology-split {
    display: flex;
}

.methodology-left,
.methodology-right {
    flex: 1;
}

.methodology-left {
    background-color: #dfe6e9;
    position: relative;
    overflow: hidden;
}

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

.methodology-right {
    padding: 5rem 4rem;
    background: #ffffff;
}

.methodology-right h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2d3436;
    font-weight: 700;
}

.methodology-right p {
    font-size: 1.05rem;
    color: #636e72;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.expertise-full {
    padding: 5rem 4rem;
    background: #f8f9fa;
}

.expertise-full h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #2d3436;
    text-align: center;
    font-weight: 700;
}

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

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

.expertise-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2d3436;
}

.expertise-card p {
    font-size: 1rem;
    color: #636e72;
    line-height: 1.7;
}

.philosophy-split {
    display: flex;
}

.philosophy-left,
.philosophy-right {
    flex: 1;
}

.philosophy-left {
    padding: 5rem 4rem;
    background: #ffffff;
}

.philosophy-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2d3436;
    font-weight: 700;
}

.philosophy-left p {
    font-size: 1.05rem;
    color: #636e72;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.principles-list li {
    padding: 0.8rem 0;
    padding-left: 1.5rem;
    border-left: 3px solid #0984e3;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #2d3436;
    line-height: 1.7;
}

.philosophy-right {
    background-color: #dfe6e9;
    position: relative;
    overflow: hidden;
}

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

.commitment-split {
    display: flex;
}

.commitment-left,
.commitment-right {
    flex: 1;
}

.commitment-left {
    background-color: #dfe6e9;
    position: relative;
    overflow: hidden;
}

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

.commitment-right {
    padding: 5rem 4rem;
    background: #f8f9fa;
}

.commitment-right h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2d3436;
    font-weight: 700;
}

.commitment-right p {
    font-size: 1.05rem;
    color: #636e72;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.cta-about {
    padding: 5rem 4rem;
    background: #0984e3;
    text-align: center;
    color: #ffffff;
}

.cta-about h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.cta-about p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-detail-split {
    display: flex;
}

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

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

.service-detail-left {
    background-color: #dfe6e9;
    position: relative;
    overflow: hidden;
}

.service-detail-split:not(.reverse) .service-detail-left {
    background-color: #dfe6e9;
}

.service-detail-split.reverse .service-detail-left {
    padding: 5rem 4rem;
    background: #ffffff;
}

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

.service-detail-right {
    padding: 5rem 4rem;
    background: #ffffff;
}

.service-detail-split.reverse .service-detail-right {
    background-color: #dfe6e9;
    position: relative;
    overflow: hidden;
    padding: 0;
}

.service-detail-split.reverse .service-detail-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-right h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    color: #2d3436;
    font-weight: 700;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0984e3;
    margin-bottom: 1.5rem;
}

.service-detail-right p {
    font-size: 1.05rem;
    color: #636e72;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-detail-right h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2d3436;
}

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

.service-detail-right ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1rem;
    color: #636e72;
    line-height: 1.7;
}

.service-detail-right ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #0984e3;
    font-weight: 700;
}

.service-form {
    padding: 5rem 4rem;
    background: #f8f9fa;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #2d3436;
    text-align: center;
    font-weight: 700;
}

.form-container p {
    font-size: 1.05rem;
    color: #636e72;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-split {
    display: flex;
}

.contact-left,
.contact-right {
    flex: 1;
}

.contact-left {
    padding: 5rem 4rem;
    background: #f8f9fa;
}

.contact-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2d3436;
    font-weight: 700;
}

.contact-left p {
    font-size: 1.05rem;
    color: #636e72;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #2d3436;
}

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

.info-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #2d3436;
    font-weight: 600;
}

.info-item p {
    font-size: 1rem;
    color: #636e72;
    line-height: 1.7;
    margin-bottom: 0;
}

.response-expectations {
    margin-top: 3rem;
}

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

.contact-right {
    padding: 5rem 4rem;
    background: #ffffff;
}

.contact-form-wrapper h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #2d3436;
}

.location-info {
    padding: 5rem 4rem;
    background: #ffffff;
}

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

.location-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2d3436;
    text-align: center;
    font-weight: 700;
}

.location-content p {
    font-size: 1.05rem;
    color: #636e72;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.faq-section {
    padding: 5rem 4rem;
    background: #f8f9fa;
}

.faq-section h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #2d3436;
    text-align: center;
    font-weight: 700;
}

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

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

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #2d3436;
}

.faq-item p {
    font-size: 1rem;
    color: #636e72;
    line-height: 1.7;
}

.thanks-section {
    padding: 5rem 4rem;
    background: #f8f9fa;
}

.thanks-container {
    display: flex;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.thanks-content {
    flex: 1;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2d3436;
    font-weight: 700;
}

.thanks-content > p {
    font-size: 1.2rem;
    color: #636e72;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.next-steps {
    margin-bottom: 3rem;
}

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

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

.step-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #0984e3;
    font-weight: 600;
}

.step-item p {
    font-size: 1rem;
    color: #636e72;
    line-height: 1.7;
}

.thanks-info {
    background: #ffffff;
    padding: 2rem;
    border-radius: 6px;
    border-left: 4px solid #0984e3;
    margin-bottom: 2rem;
}

.thanks-info p {
    font-size: 1rem;
    color: #636e72;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.thanks-info p:last-child {
    margin-bottom: 0;
}

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

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: #0984e3;
    color: #ffffff;
}

.btn-primary:hover {
    background: #0770c4;
}

.btn-secondary {
    background: transparent;
    color: #0984e3;
    border: 2px solid #0984e3;
}

.btn-secondary:hover {
    background: #0984e3;
    color: #ffffff;
}

.thanks-image {
    flex: 0.8;
    background-color: #dfe6e9;
    border-radius: 6px;
    overflow: hidden;
}

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

.thanks-resources {
    padding: 4rem 4rem;
    background: #ffffff;
}

.thanks-resources h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2d3436;
    text-align: center;
    font-weight: 700;
}

.thanks-resources > p {
    font-size: 1.05rem;
    color: #636e72;
    text-align: center;
    margin-bottom: 3rem;
}

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

.resource-card {
    flex: 1;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 6px;
    text-align: center;
}

.resource-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2d3436;
}

.resource-card p {
    font-size: 1rem;
    color: #636e72;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.resource-card a {
    color: #0984e3;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.resource-card a:hover {
    color: #0770c4;
}

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

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #2d3436;
    font-weight: 700;
}

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

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: #2d3436;
    font-weight: 700;
}

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2d3436;
    font-weight: 600;
}

.legal-page p {
    font-size: 1rem;
    color: #636e72;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

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

.legal-page ul li {
    font-size: 1rem;
    color: #636e72;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

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

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

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

.cookie-table td {
    font-size: 0.95rem;
    color: #636e72;
}

@media (max-width: 1024px) {
    .header-split {
        padding: 1.5rem 2rem;
    }

    .hero-split,
    .intro-split,
    .services-split,
    .approach-split,
    .form-split,
    .location-split,
    .content-split,
    .methodology-split,
    .philosophy-split,
    .commitment-split,
    .service-detail-split,
    .contact-split {
        flex-direction: column;
    }

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

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

    .testimonial-grid,
    .expertise-grid,
    .faq-grid,
    .resources-grid {
        flex-direction: column;
    }

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

    .footer-split {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-right {
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .header-split {
        flex-direction: column;
        gap: 1rem;
    }

    .header-right {
        flex-direction: column;
        gap: 1rem;
    }

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

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

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