* {
    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-color: #ffffff;
}

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a73e8;
}

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

.main-nav a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
}

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

.ad-notice {
    font-size: 0.8rem;
    color: #666;
    padding: 0.3rem 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #f9f9f9;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem 2rem;
    z-index: 1000;
    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: 2rem;
}

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

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

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

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

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

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

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

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: stretch;
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5rem;
    background-color: #f8f9fa;
}

.hero-left h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-left p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #555;
}

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

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

.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
}

.cta-primary {
    background-color: #1a73e8;
    color: #ffffff;
}

.cta-primary:hover {
    background-color: #1557b0;
    transform: translateY(-2px);
}

.cta-secondary {
    background-color: transparent;
    color: #1a73e8;
    border: 2px solid #1a73e8;
}

.cta-secondary:hover {
    background-color: #1a73e8;
    color: #ffffff;
    transform: translateY(-2px);
}

.intro-split {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.intro-image {
    flex: 1;
    background-color: #e8eef3;
}

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

.intro-text {
    flex: 1;
    padding: 3rem 4rem;
}

.intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.intro-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #555;
}

.why-section {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

.why-content {
    max-width: 1200px;
    margin: 0 auto;
}

.why-content h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.why-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

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

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

.why-card p {
    color: #555;
}

.services-preview {
    display: flex;
    align-items: stretch;
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
    gap: 3rem;
}

.services-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
}

.services-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.services-left p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
}

.services-right {
    flex: 1;
    display: flex;
    gap: 1.5rem;
}

.service-highlight {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background-color: #e8eef3;
}

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

.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2rem;
    color: #ffffff;
}

.service-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.service-overlay .price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #27ae60;
}

.transformation-split {
    display: flex;
    align-items: stretch;
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

.transform-text {
    flex: 1;
    padding: 3rem 4rem;
}

.transform-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

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

.step {
    display: flex;
    gap: 1.5rem;
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: #1a73e8;
    min-width: 60px;
}

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

.step p {
    color: #555;
}

.transform-image {
    flex: 1;
    background-color: #e8eef3;
}

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

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

.testimonials h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

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

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1rem;
    color: #555;
    font-size: 1.05rem;
}

.testimonial-author {
    font-weight: 600;
    color: #1a1a1a;
}

.cta-split {
    display: flex;
    align-items: stretch;
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
    gap: 3rem;
}

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

.cta-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.cta-left p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
}

.cta-left img {
    width: 100%;
    border-radius: 8px;
    margin-top: 2rem;
}

.cta-right {
    flex: 1;
    background-color: #f8f9fa;
    padding: 3rem;
    border-radius: 8px;
}

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

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
}

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

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

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

.science-section {
    background-color: #f8f9fa;
    padding: 4rem 2rem;
}

.science-container {
    max-width: 900px;
    margin: 0 auto;
}

.science-container h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #1a1a1a;
}

.science-container p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

.science-container sup a {
    color: #1a73e8;
    text-decoration: none;
    font-weight: 600;
}

.disclaimer-text {
    font-size: 0.95rem;
    padding: 1.5rem;
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 4px;
    color: #856404;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 2rem 1rem;
}

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

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

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

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

.footer-column a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #1a73e8;
}

.footer-column p {
    margin-bottom: 0.5rem;
    color: #bdc3c7;
}

.footer-references {
    max-width: 1200px;
    margin: 2rem auto;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
}

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

.footer-references p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: #bdc3c7;
}

.footer-references a {
    color: #1a73e8;
    text-decoration: none;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    text-align: center;
    color: #bdc3c7;
}

.page-hero-split {
    display: flex;
    align-items: center;
    min-height: 60vh;
}

.page-hero-content {
    flex: 1;
    padding: 4rem 5rem;
    background-color: #f8f9fa;
}

.page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.page-hero-content p {
    font-size: 1.3rem;
    color: #555;
}

.page-hero-image {
    flex: 1;
    min-height: 60vh;
    background-color: #e8eef3;
}

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

.about-content-split {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
    gap: 3rem;
}

.about-text {
    flex: 1;
    padding: 2rem;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #555;
}

.about-image {
    flex: 1;
    background-color: #e8eef3;
}

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

.philosophy-section {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

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

.philosophy-container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

.philosophy-item {
    flex: 1 1 calc(50% - 1rem);
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
}

.philosophy-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a73e8;
}

.philosophy-item p {
    color: #555;
}

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

.values-image {
    flex: 1;
    background-color: #e8eef3;
}

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

.values-text {
    flex: 1;
    padding: 2rem;
}

.values-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.values-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #555;
}

.method-section {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

.method-content {
    max-width: 1200px;
    margin: 0 auto;
}

.method-content h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.method-content > p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #555;
}

.method-columns {
    display: flex;
    gap: 2rem;
}

.method-column {
    flex: 1;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
}

.method-column h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a73e8;
}

.method-column p {
    color: #555;
}

.cta-about {
    background-color: #1a73e8;
    padding: 4rem 2rem;
    text-align: center;
}

.cta-about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-about-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #ecf0f1;
}

.cta-about-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.services-hero {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
    text-align: center;
}

.services-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.services-hero-content p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: #555;
}

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

.pricing-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.pricing-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.pricing-intro p {
    font-size: 1.1rem;
    color: #555;
}

.pricing-grid {
    display: flex;
    gap: 2rem;
    align-items: stretch;
}

.pricing-card {
    flex: 1;
    background-color: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card.featured {
    border-color: #1a73e8;
    box-shadow: 0 4px 20px rgba(26, 115, 232, 0.2);
}

.popular-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: #27ae60;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 10;
}

.pricing-image {
    height: 200px;
    background-color: #e8eef3;
}

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

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

.pricing-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.price-tag {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a73e8;
    margin-bottom: 1.5rem;
}

.price-tag span {
    font-size: 1rem;
    font-weight: 400;
    color: #777;
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
    flex: 1;
}

.features-list li {
    padding: 0.7rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

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

.select-plan {
    display: block;
    text-align: center;
    padding: 1rem;
    background-color: #1a73e8;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.select-plan:hover {
    background-color: #1557b0;
    transform: translateY(-2px);
}

.additional-services {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

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

.additional-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.additional-header p {
    font-size: 1.1rem;
    color: #555;
}

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

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

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

.additional-right {
    flex: 1;
    background-color: #e8eef3;
}

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

.additional-service h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a73e8;
    margin-bottom: 1.5rem;
}

.additional-service p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

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

.cta-service:hover {
    background-color: #1557b0;
    transform: translateY(-2px);
}

.services-guarantee {
    max-width: 900px;
    margin: 4rem auto;
    padding: 3rem;
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 8px;
}

.guarantee-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #856404;
}

.guarantee-content p {
    font-size: 1.1rem;
    color: #856404;
    margin-bottom: 0.8rem;
}

.services-faq {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.faq-container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

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

.faq-item p {
    color: #555;
}

.services-cta {
    background-color: #1a73e8;
    padding: 4rem 2rem;
    text-align: center;
}

.services-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.services-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #ecf0f1;
}

.contact-hero {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
    text-align: center;
}

.contact-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.contact-hero-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    color: #555;
}

.contact-main-split {
    display: flex;
    align-items: stretch;
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
    gap: 3rem;
}

.contact-info-side {
    flex: 1;
    padding: 2rem;
}

.contact-block h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.contact-item {
    margin-bottom: 2.5rem;
}

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

.contact-detail {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.contact-note {
    font-size: 0.95rem;
    color: #777;
    font-style: italic;
}

.contact-additional {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.contact-additional h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-additional p {
    margin-bottom: 0.8rem;
    color: #555;
}

.contact-image-side {
    flex: 1;
    position: relative;
    background-color: #e8eef3;
}

.contact-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.contact-overlay-box {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 8px;
}

.contact-overlay-box h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.contact-overlay-box p {
    margin-bottom: 1.2rem;
    color: #555;
}

.cta-overlay {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: #1a73e8;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-overlay:hover {
    background-color: #1557b0;
    transform: translateY(-2px);
}

.contact-faq-section {
    background-color: #f8f9fa;
    padding: 4rem 2rem;
}

.contact-faq-container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.faq-two-column {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

.faq-column {
    flex: 1;
}

.faq-question {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.faq-question h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.faq-question p {
    color: #555;
}

.contact-cta-final {
    padding: 4rem 2rem;
    text-align: center;
}

.contact-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
}

.cta-buttons-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.thanks-hero {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
    text-align: center;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
}

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #27ae60;
}

.thanks-main-text {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.thanks-content p {
    font-size: 1.1rem;
    color: #555;
}

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

.thanks-details-container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

.step-item {
    display: flex;
    gap: 2rem;
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.step-num {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a73e8;
    min-width: 60px;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.step-content p {
    color: #555;
}

.thanks-service-info {
    background-color: #e8f4f8;
    padding: 3rem 2rem;
    text-align: center;
}

.service-info-content {
    max-width: 800px;
    margin: 0 auto;
}

.service-info-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-info-content p {
    font-size: 1.1rem;
    color: #555;
}

.thanks-while-waiting {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.waiting-container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

.waiting-card {
    flex: 1;
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
}

.waiting-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.waiting-card p {
    margin-bottom: 1.5rem;
    color: #555;
}

.waiting-link {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: #1a73e8;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.waiting-link:hover {
    background-color: #1557b0;
    transform: translateY(-2px);
}

.thanks-reminder {
    background-color: #fff3cd;
    padding: 3rem 2rem;
    text-align: center;
}

.reminder-content {
    max-width: 800px;
    margin: 0 auto;
}

.reminder-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #856404;
}

.reminder-content p {
    font-size: 1.1rem;
    color: #856404;
    margin-bottom: 0.8rem;
}

.legal-page {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

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

.legal-container h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.legal-update {
    font-size: 0.95rem;
    color: #777;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: #555;
}

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

.legal-content li {
    margin-bottom: 0.5rem;
    color: #555;
}

.legal-content a {
    color: #1a73e8;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #1557b0;
}

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

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

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

.cookie-table td {
    color: #555;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .services-preview,
    .transformation-split,
    .cta-split,
    .about-content-split,
    .values-split,
    .additional-split,
    .contact-main-split {
        flex-direction: column;
    }

    .hero-left,
    .hero-right,
    .intro-image,
    .intro-text,
    .services-left,
    .services-right,
    .transform-text,
    .transform-image,
    .cta-left,
    .cta-right,
    .about-text,
    .about-image,
    .values-image,
    .values-text,
    .additional-left,
    .additional-right,
    .contact-info-side,
    .contact-image-side {
        min-height: 400px;
    }

    .why-grid,
    .testimonials-grid,
    .pricing-grid,
    .method-columns,
    .waiting-grid,
    .faq-two-column {
        flex-direction: column;
    }

    .services-right {
        flex-direction: row;
    }

    .main-nav {
        gap: 1rem;
        font-size: 0.9rem;
    }

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

    .hero-left,
    .page-hero-content {
        padding: 3rem 2rem;
    }
}

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

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

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

    .philosophy-grid,
    .faq-grid {
        flex-direction: column;
    }

    .philosophy-item,
    .faq-item {
        flex: 1 1 100%;
    }

    .services-right {
        flex-direction: column;
    }
}