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

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --text-color: #1f2937;
    --light-gray: #f3f4f6;
    --medium-gray: #9ca3af;
    --dark-gray: #374151;
    --white: #ffffff;
    --success: #10b981;
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--white);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: var(--text-color);
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--border-radius);
}

.nav-menu a:hover,
.nav-menu a.active {
    background: var(--light-gray);
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    margin: 3px 0;
    transition: var(--transition);
}

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

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

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

.btn-primary {
    display: inline-block;
    background: var(--white);
    color: var(--primary-color);
    padding: 14px 32px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.btn-primary-large {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 18px 48px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 18px;
    transition: var(--transition);
}

.btn-primary-large:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 28px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.intro-section {
    padding: 80px 20px;
    background: var(--light-gray);
}

.intro-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-color);
}

.intro-section p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--dark-gray);
}

.services-preview-split {
    display: flex;
    min-height: 500px;
}

.services-preview-split.reverse {
    flex-direction: row-reverse;
}

.split-left-content,
.split-right-content {
    flex: 1;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.split-right-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-color);
}

.split-right-content p {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.7;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 20px 0;
}

.trust-section {
    padding: 80px 20px;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.trust-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
}

.trust-grid {
    display: flex;
    justify-content: space-around;
    gap: 40px;
}

.trust-item {
    flex: 1;
}

.trust-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.testimonial-split {
    display: flex;
    min-height: 500px;
}

.testimonial-content {
    flex: 1;
    padding: 60px 50px;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-content blockquote {
    font-size: 22px;
    line-height: 1.8;
    font-style: italic;
    color: var(--dark-gray);
}

.testimonial-content cite {
    display: block;
    margin-top: 20px;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    color: var(--primary-color);
}

.testimonial-image {
    flex: 1;
}

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

.process-section {
    padding: 80px 20px;
    background: var(--white);
}

.process-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
}

.process-steps {
    display: flex;
    gap: 30px;
    justify-content: space-between;
}

.process-step {
    flex: 1;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.benefits-split {
    display: flex;
    min-height: 600px;
}

.benefits-left {
    flex: 1;
    padding: 60px 50px;
    background: var(--light-gray);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.benefits-left h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

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

.benefits-list li {
    font-size: 18px;
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
    font-size: 20px;
}

.benefits-right {
    flex: 1;
}

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

.all-services-section {
    padding: 80px 20px;
    background: var(--white);
}

.all-services-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    background: var(--light-gray);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

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

.service-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card ul {
    list-style: none;
    margin-top: 15px;
}

.service-card ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 15px;
}

.service-card ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.form-section-split {
    display: flex;
    min-height: 600px;
    background: var(--light-gray);
}

.form-left {
    flex: 1;
    padding: 60px 50px;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-left h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.form-left p {
    font-size: 18px;
    margin-bottom: 30px;
}

.form-benefits p {
    font-size: 16px;
    margin-bottom: 10px;
}

.form-right {
    flex: 1;
    padding: 60px 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.order-form {
    width: 100%;
    max-width: 500px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e5e7eb;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.final-cta {
    padding: 100px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    text-align: center;
}

.final-cta h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.footer {
    background: #1f2937;
    color: var(--white);
    padding: 60px 20px 20px;
}

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

.footer-column {
    flex: 1;
}

.footer-column h5 {
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.8;
}

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

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

.footer-column ul li a {
    color: var(--white);
    opacity: 0.8;
    font-size: 14px;
}

.footer-column ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.sticky-btn {
    display: block;
    background: var(--primary-color);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
    transition: var(--transition);
}

.sticky-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(31, 41, 55, 0.95);
    color: var(--white);
    padding: 20px;
    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: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

.cookie-content a {
    color: var(--white);
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-accept {
    background: var(--success);
    color: var(--white);
}

.btn-accept:hover {
    background: #059669;
}

.btn-reject {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

.page-header {
    padding: 80px 20px 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.header-subtitle {
    font-size: 20px;
    opacity: 0.95;
}

.about-story-split {
    display: flex;
    min-height: 600px;
}

.story-left {
    flex: 1;
}

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

.story-right {
    flex: 1;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--light-gray);
}

.story-right h2 {
    font-size: 32px;
    margin-bottom: 25px;
}

.story-right p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.values-section {
    padding: 80px 20px;
    background: var(--white);
}

.values-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

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

.value-card {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background: var(--light-gray);
    border-radius: var(--border-radius);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.value-card p {
    font-size: 16px;
    line-height: 1.6;
}

.team-split {
    display: flex;
    min-height: 500px;
}

.team-content {
    flex: 1;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-content h2 {
    font-size: 32px;
    margin-bottom: 25px;
}

.team-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.team-image {
    flex: 1;
}

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

.numbers-section {
    padding: 80px 20px;
    background: var(--primary-color);
    color: var(--white);
}

.numbers-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

.numbers-grid {
    display: flex;
    justify-content: space-around;
    gap: 40px;
}

.number-box {
    flex: 1;
    text-align: center;
}

.big-number {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 10px;
}

.number-box p {
    font-size: 18px;
}

.testimonials-section {
    padding: 80px 20px;
    background: var(--light-gray);
}

.testimonials-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

.testimonials-grid {
    display: flex;
    gap: 30px;
}

.testimonial-box {
    flex: 1;
    padding: 30px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.testimonial-box p {
    font-size: 16px;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-box cite {
    font-style: normal;
    font-weight: 600;
    color: var(--primary-color);
}

.cta-about {
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    text-align: center;
}

.cta-about h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.cta-about p {
    font-size: 18px;
    margin-bottom: 40px;
}

.service-detail-split {
    display: flex;
    min-height: 600px;
    margin-bottom: 0;
}

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

.service-detail-left {
    flex: 1;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-left h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.service-main-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-description {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.service-detail-left h4 {
    font-size: 20px;
    margin-bottom: 15px;
    margin-top: 20px;
}

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

.service-includes li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
    font-size: 18px;
}

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

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

.pricing-notes {
    padding: 80px 20px;
    background: var(--light-gray);
}

.pricing-notes h3 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
}

.notes-grid {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.note-box {
    flex: 1;
    padding: 25px;
    background: var(--white);
    border-radius: var(--border-radius);
}

.note-box h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.note-box p {
    font-size: 15px;
    line-height: 1.6;
}

.why-us-services {
    padding: 80px 20px;
    background: var(--white);
}

.why-us-services h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

.why-grid {
    display: flex;
    gap: 30px;
}

.why-item {
    flex: 1;
    text-align: center;
}

.why-item h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.why-item p {
    font-size: 16px;
    line-height: 1.6;
}

.cta-services {
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    text-align: center;
}

.cta-services h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.cta-services p {
    font-size: 18px;
    margin-bottom: 40px;
}

.contact-split {
    display: flex;
    min-height: 600px;
}

.contact-info-side {
    flex: 1;
    padding: 60px 50px;
    background: var(--light-gray);
}

.contact-info-side h2 {
    font-size: 32px;
    margin-bottom: 40px;
}

.contact-block {
    margin-bottom: 35px;
}

.contact-block h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-block p {
    font-size: 16px;
    line-height: 1.6;
}

.contact-block a {
    color: var(--text-color);
}

.contact-map-side {
    flex: 1;
}

.map-placeholder {
    width: 100%;
    height: 100%;
}

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

.contact-areas {
    padding: 80px 20px;
    background: var(--white);
}

.contact-areas h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
    color: var(--dark-gray);
}

.areas-grid {
    display: flex;
    gap: 30px;
}

.area-box {
    flex: 1;
    padding: 25px;
    background: var(--light-gray);
    border-radius: var(--border-radius);
}

.area-box h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.area-box p {
    font-size: 16px;
    line-height: 1.6;
}

.contact-faq {
    padding: 80px 20px;
    background: var(--light-gray);
}

.contact-faq h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

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

.faq-item {
    background: var(--white);
    padding: 25px;
    margin-bottom: 20px;
    border-radius: var(--border-radius);
}

.faq-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 16px;
    line-height: 1.6;
}

.cta-contact {
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    text-align: center;
}

.cta-contact h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.cta-contact p {
    font-size: 18px;
    margin-bottom: 40px;
}

.legal-page {
    padding: 60px 20px 80px;
    background: var(--white);
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 10px;
    color: var(--text-color);
}

.legal-date {
    font-size: 14px;
    color: var(--medium-gray);
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--text-color);
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.legal-page h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--dark-gray);
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

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

.legal-page ul li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 8px;
}

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

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

.cookies-table th {
    background: var(--light-gray);
    font-weight: 600;
}

.thanks-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px 20px;
}

.thanks-content {
    background: var(--white);
    padding: 60px 40px;
    border-radius: var(--border-radius);
    max-width: 700px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--success);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-color);
}

.thanks-message {
    font-size: 20px;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.thanks-info {
    font-size: 16px;
    color: var(--medium-gray);
    margin-bottom: 30px;
}

.selected-service {
    background: var(--light-gray);
    padding: 15px;
    border-radius: var(--border-radius);
    margin: 20px 0;
    font-size: 16px;
}

.thanks-next {
    text-align: left;
    margin: 40px 0;
    padding: 30px;
    background: var(--light-gray);
    border-radius: var(--border-radius);
}

.thanks-next h3 {
    font-size: 22px;
    margin-bottom: 20px;
    text-align: center;
}

.thanks-steps {
    margin-left: 20px;
}

.thanks-steps li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 12px;
}

.thanks-contact {
    margin: 30px 0;
}

.thanks-contact p {
    font-size: 14px;
    color: var(--medium-gray);
}

.thanks-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

@media (max-width: 1024px) {
    .hero-split,
    .services-preview-split,
    .testimonial-split,
    .benefits-split,
    .form-section-split,
    .about-story-split,
    .team-split,
    .service-detail-split,
    .contact-split {
        flex-direction: column;
    }

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

    .process-steps,
    .trust-grid,
    .services-cards,
    .values-grid,
    .numbers-grid,
    .testimonials-grid,
    .notes-grid,
    .why-grid,
    .areas-grid {
        flex-direction: column;
    }

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

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 28px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

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