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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

a {
    text-decoration: none;
    color: inherit;
}

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

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-content p {
    font-size: 14px;
    line-height: 1.5;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background-color: #3498db;
    color: #ffffff;
}

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

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

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

.header-split {
    display: flex;
    flex-direction: column;
    padding: 20px 5%;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

.header-left {
    margin-bottom: 15px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

.header-right {
    width: 100%;
}

.nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nav-links a {
    color: #2c3e50;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.hero-split {
    display: flex;
    flex-direction: column;
    min-height: 500px;
}

.hero-left {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

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

.hero-right {
    width: 100%;
    padding: 40px 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

.hero-right h1 {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.hero-right p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #4a5568;
}

.cta-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #3498db;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-align: center;
    align-self: flex-start;
}

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

.cta-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: #3498db;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    border: 2px solid #3498db;
    transition: all 0.3s ease;
    text-align: center;
}

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

.intro-offset {
    padding: 60px 5%;
    background-color: #ffffff;
}

.intro-text-narrow {
    max-width: 700px;
    margin: 0 auto;
}

.intro-text-narrow h2 {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.intro-text-narrow p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 18px;
    color: #4a5568;
}

.split-content,
.split-content-reverse {
    display: flex;
    flex-direction: column;
}

.split-content-reverse {
    flex-direction: column-reverse;
}

.content-block {
    width: 100%;
    padding: 50px 5%;
    background-color: #f8f9fa;
}

.content-block h3 {
    font-size: 26px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.content-block p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #4a5568;
}

.image-block {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

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

.services-grid {
    padding: 70px 5%;
    background-color: #ffffff;
}

.section-header-centered {
    text-align: center;
    margin-bottom: 50px;
}

.section-header-centered h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.section-header-centered p {
    font-size: 18px;
    color: #4a5568;
}

.services-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background-color: #f8f9fa;
    padding: 35px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

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

.service-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #4a5568;
}

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

.btn-service {
    padding: 12px 28px;
    background-color: #3498db;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.testimonial-inline {
    padding: 60px 5%;
    background-color: #2c3e50;
}

.testimonial-inline blockquote {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-inline p {
    font-size: 20px;
    line-height: 1.6;
    color: #ffffff;
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-inline cite {
    font-size: 16px;
    color: #bdc3c7;
    font-style: normal;
}

.why-now-section {
    padding: 70px 5%;
    background-color: #f8f9fa;
}

.why-now-section h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.reasons-flex {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.reason-item {
    padding: 30px;
    background-color: #ffffff;
    border-left: 4px solid #3498db;
}

.reason-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.reason-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
}

.cta-section-split {
    display: flex;
    flex-direction: column;
    background-color: #3498db;
    padding: 50px 5%;
}

.cta-left {
    width: 100%;
    margin-bottom: 30px;
}

.cta-left h3 {
    font-size: 28px;
    color: #ffffff;
    margin-bottom: 15px;
}

.cta-left p {
    font-size: 17px;
    color: #ecf0f1;
}

.cta-right {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.cta-large {
    display: inline-block;
    padding: 16px 40px;
    background-color: #ffffff;
    color: #3498db;
    font-size: 18px;
    font-weight: 700;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.form-section {
    padding: 70px 5%;
    background-color: #ffffff;
}

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

.form-container h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1a1a1a;
    text-align: center;
}

.form-container > p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 40px;
    text-align: center;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    font-size: 15px;
    border: 1px solid #d0d0d0;
    border-radius: 5px;
    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: #3498db;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.btn-submit {
    padding: 14px 32px;
    background-color: #3498db;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

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

.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 50px 5% 20px;
}

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #bdc3c7;
}

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

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

.footer-section ul li a {
    font-size: 14px;
    color: #bdc3c7;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333333;
}

.footer-bottom p {
    font-size: 13px;
    color: #7f8c8d;
}

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

.sticky-cta.active {
    display: block;
}

.sticky-cta-btn {
    display: block;
    padding: 14px 28px;
    background-color: #e74c3c;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.5);
}

.page-hero {
    padding: 80px 5%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-hero p {
    font-size: 18px;
    color: #ecf0f1;
    max-width: 700px;
    margin: 0 auto;
}

.about-split {
    display: flex;
    flex-direction: column;
    padding: 60px 5%;
    background-color: #ffffff;
}

.about-text {
    width: 100%;
    padding: 20px 0;
}

.about-text h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.about-text p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #4a5568;
}

.about-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 8px;
    margin-top: 20px;
}

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

.philosophy-section {
    padding: 70px 5%;
    background-color: #f8f9fa;
}

.philosophy-section h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.philosophy-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.philosophy-card {
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.philosophy-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.philosophy-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
}

.values-offset {
    padding: 60px 5%;
    background-color: #ffffff;
}

.values-offset h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.values-list {
    list-style: none;
    max-width: 800px;
}

.values-list li {
    font-size: 17px;
    line-height: 1.6;
    padding: 15px 0 15px 35px;
    color: #4a5568;
    position: relative;
}

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

.cta-section-centered {
    padding: 70px 5%;
    background-color: #f8f9fa;
    text-align: center;
}

.cta-section-centered h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.cta-section-centered p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.services-detailed {
    padding: 60px 5%;
    background-color: #ffffff;
}

.service-detail-card {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.service-detail-card.featured-service {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border: none;
}

.service-detail-card.featured-service h3,
.service-detail-card.featured-service h4 {
    color: #ffffff;
}

.service-detail-card.featured-service .price-large {
    color: #ffffff;
}

.service-detail-card.featured-service p,
.service-detail-card.featured-service li {
    color: #ecf0f1;
}

.service-detail-card.featured-service .btn-service {
    background-color: #ffffff;
    color: #667eea;
}

.service-detail-card.featured-service .btn-service:hover {
    background-color: #ecf0f1;
}

.service-detail-left {
    width: 100%;
    margin-bottom: 30px;
}

.service-detail-left h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.price-large {
    font-size: 36px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 15px;
}

.service-summary {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.6;
}

.service-detail-right {
    width: 100%;
}

.service-detail-right h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-detail-right ul {
    list-style: none;
    margin-bottom: 25px;
}

.service-detail-right ul li {
    font-size: 15px;
    line-height: 1.6;
    padding: 8px 0 8px 25px;
    color: #4a5568;
    position: relative;
}

.service-detail-right ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3498db;
    font-size: 20px;
}

.how-it-works {
    padding: 70px 5%;
    background-color: #f8f9fa;
}

.how-it-works h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    flex-direction: column;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #3498db;
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.step-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.step-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
}

.contact-split {
    display: flex;
    flex-direction: column;
    padding: 60px 5%;
    background-color: #ffffff;
}

.contact-info {
    width: 100%;
    padding: 20px 0;
}

.contact-info h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

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

.contact-detail h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #3498db;
}

.contact-detail p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
}

.contact-detail a {
    color: #3498db;
    text-decoration: underline;
}

.contact-note {
    margin-top: 30px;
    padding: 20px;
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
}

.contact-note p {
    font-size: 15px;
    line-height: 1.6;
    color: #4a5568;
}

.contact-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 8px;
    margin-top: 30px;
}

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

.faq-section {
    padding: 70px 5%;
    background-color: #f8f9fa;
}

.faq-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #1a1a1a;
    text-align: center;
}

.faq-item {
    max-width: 800px;
    margin: 0 auto 30px;
    padding: 25px;
    background-color: #ffffff;
    border-radius: 8px;
}

.faq-item h4 {
    font-size: 19px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

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

.thanks-section {
    padding: 80px 5%;
    background-color: #f8f9fa;
    min-height: 60vh;
}

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

.thanks-container h1 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 40px;
    line-height: 1.6;
}

.service-selected {
    padding: 25px;
    background-color: #e8f4f8;
    border-radius: 8px;
    margin-bottom: 40px;
    border: 2px solid #3498db;
}

.service-selected h3 {
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.service-selected p {
    font-size: 16px;
    color: #4a5568;
}

.thanks-info {
    text-align: left;
    margin-bottom: 40px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
}

.thanks-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.thanks-info ul li {
    font-size: 16px;
    line-height: 1.6;
    padding: 10px 0 10px 30px;
    color: #4a5568;
    position: relative;
}

.thanks-info ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-size: 18px;
}

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

.thanks-contact p {
    font-size: 16px;
    color: #4a5568;
}

.thanks-contact a {
    color: #3498db;
    text-decoration: underline;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #3498db;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: #3498db;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    border: 2px solid #3498db;
    transition: all 0.3s ease;
}

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

.legal-page {
    padding: 60px 5%;
    background-color: #ffffff;
}

.legal-page h1 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.legal-updated {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

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

.legal-content h2 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #4a5568;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-content ul li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #4a5568;
}

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

.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    overflow: auto;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: 700;
    color: #aaa;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #000;
}

.modal-content h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

@media (min-width: 768px) {
    .header-split {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 25px 8%;
    }

    .header-left {
        margin-bottom: 0;
    }

    .header-right {
        width: auto;
    }

    .nav-links {
        flex-direction: row;
        gap: 30px;
    }

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

    .hero-left {
        width: 50%;
        height: auto;
    }

    .hero-right {
        width: 50%;
        padding: 60px 8%;
    }

    .hero-right h1 {
        font-size: 42px;
    }

    .split-content,
    .split-content-reverse {
        flex-direction: row;
    }

    .split-content-reverse {
        flex-direction: row-reverse;
    }

    .content-block {
        width: 50%;
        padding: 80px 8%;
    }

    .image-block {
        width: 50%;
        height: auto;
    }

    .services-container {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        width: calc(50% - 12.5px);
    }

    .reasons-flex {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .reason-item {
        width: calc(33.333% - 20px);
    }

    .cta-section-split {
        flex-direction: row;
        align-items: center;
        padding: 60px 8%;
    }

    .cta-left {
        width: 60%;
        margin-bottom: 0;
    }

    .cta-right {
        width: 40%;
        justify-content: flex-end;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-section {
        width: calc(33.333% - 20px);
    }

    .about-split {
        flex-direction: row;
        align-items: center;
        padding: 80px 8%;
    }

    .about-text {
        width: 50%;
        padding-right: 50px;
    }

    .about-image {
        width: 50%;
        height: 400px;
        margin-top: 0;
    }

    .philosophy-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .philosophy-card {
        width: calc(50% - 12.5px);
    }

    .cta-buttons {
        flex-direction: row;
    }

    .service-detail-card {
        flex-direction: row;
        padding: 50px;
    }

    .service-detail-left {
        width: 40%;
        margin-bottom: 0;
        padding-right: 40px;
    }

    .service-detail-right {
        width: 60%;
    }

    .steps-container {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .step-item {
        width: calc(50% - 15px);
    }

    .contact-split {
        flex-direction: row;
        padding: 80px 8%;
    }

    .contact-info {
        width: 50%;
        padding-right: 50px;
    }

    .contact-image {
        width: 50%;
        height: 400px;
        margin-top: 0;
    }

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

    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .cookie-buttons {
        flex-shrink: 0;
    }
}

@media (min-width: 1024px) {
    .hero-right h1 {
        font-size: 48px;
    }

    .hero-right p {
        font-size: 20px;
    }

    .service-card {
        width: calc(33.333% - 17px);
    }

    .philosophy-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .philosophy-card {
        width: calc(50% - 12.5px);
    }
}

@media (min-width: 1200px) {
    .header-split {
        padding: 25px 10%;
    }

    .hero-right {
        padding: 80px 10%;
    }

    .content-block {
        padding: 100px 10%;
    }
}