* {
    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: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

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

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

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

.ad-notice {
    font-size: 0.85rem;
    color: #666;
    padding: 0.3rem 0.8rem;
    background-color: #f5f5f5;
    border-radius: 4px;
}

.hero-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 600px;
    align-items: center;
}

.hero-left {
    flex: 1;
    padding: 4rem;
}

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

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

.hero-right {
    flex: 1;
    min-height: 600px;
}

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

.cta-primary {
    background-color: #1a73e8;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

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

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

.intro-image {
    flex: 1;
}

.intro-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

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

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

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

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

.section-header {
    max-width: 1400px;
    margin: 0 auto 3rem;
}

.section-header.centered {
    text-align: center;
}

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

.section-header p {
    font-size: 1.2rem;
    color: #555;
}

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

.challenge-item {
    flex: 1 1 calc(50% - 1rem);
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

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

.challenge-item p {
    color: #555;
    line-height: 1.7;
}

.approach-split {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
    gap: 4rem;
    align-items: stretch;
}

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

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

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

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

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

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

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

.approach-image {
    flex: 1;
}

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

.link-cta {
    display: inline-block;
    margin-top: 2rem;
    color: #1a73e8;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid #1a73e8;
    transition: color 0.3s ease;
}

.link-cta:hover {
    color: #1557b0;
}

.services-preview {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.service-cards {
    max-width: 1400px;
    margin: 3rem auto 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1 1 calc(50% - 1rem);
    background-color: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 2.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.service-card.highlighted {
    border-color: #1a73e8;
    background-color: #f0f7ff;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.service-header h3 {
    font-size: 1.6rem;
    color: #1a1a1a;
}

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

.service-description {
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.service-features li {
    padding: 0.7rem 0;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
}

.service-features li:before {
    content: "✓ ";
    color: #1a73e8;
    font-weight: 700;
    margin-right: 0.5rem;
}

.btn-select {
    background-color: #1a73e8;
    color: #ffffff;
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

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

.testimonials-split {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
    gap: 4rem;
    background-color: #f8f9fa;
}

.testimonials-content {
    flex: 1;
    padding: 4rem;
}

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

.testimonial {
    margin-bottom: 2.5rem;
}

.quote {
    font-size: 1.1rem;
    font-style: italic;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

.testimonials-image {
    flex: 1;
}

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

.form-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.form-intro {
    flex: 1;
}

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

.form-intro p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

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

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

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1a1a1a;
}

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

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

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

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

.trust-indicators {
    background-color: #1a73e8;
    padding: 4rem 2rem;
    color: #ffffff;
}

.trust-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.trust-content h3 {
    font-size: 2rem;
    margin-bottom: 3rem;
}

.indicators {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 3rem;
}

.indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.indicator-value {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.indicator-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section {
    flex: 1 1 220px;
}

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

.footer-section p {
    color: #bbb;
    line-height: 1.7;
}

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

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

.footer-section a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.disclaimer {
    font-size: 0.9rem;
    margin-top: 1rem;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem 2rem;
    z-index: 9999;
    display: none;
}

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

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

.btn-accept:hover {
    opacity: 0.9;
}

.btn-reject {
    background-color: #555;
    color: #ffffff;
}

.btn-reject:hover {
    opacity: 0.9;
}

.page-hero {
    background: linear-gradient(135deg, #1a73e8 0%, #1557b0 100%);
    padding: 5rem 2rem;
    text-align: center;
    color: #ffffff;
}

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

.hero-content-center h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content-center p {
    font-size: 1.3rem;
    opacity: 0.95;
}

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

.service-detail-card {
    margin-bottom: 4rem;
}

.service-detail-split {
    display: flex;
    gap: 4rem;
    align-items: stretch;
    background-color: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
}

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

.service-detail-content {
    flex: 1;
    padding: 3rem;
}

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

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

.service-intro {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-detail-content h4 {
    font-size: 1.2rem;
    margin: 1.5rem 0 1rem;
    color: #1a1a1a;
}

.detail-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.detail-list li {
    padding: 0.7rem 0;
    color: #555;
    line-height: 1.6;
}

.detail-list li:before {
    content: "→ ";
    color: #1a73e8;
    font-weight: 700;
    margin-right: 0.5rem;
}

.service-duration {
    font-weight: 600;
    color: #1a73e8;
    margin-bottom: 2rem;
}

.service-detail-image {
    flex: 1;
    min-height: 400px;
}

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

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

.cta-content-centered {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

.cta-content-centered p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.btn-primary {
    display: inline-block;
    background-color: #1a73e8;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

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

.about-hero-left {
    flex: 1;
    padding: 3rem;
}

.about-hero-left h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.about-hero-left p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
}

.about-hero-right {
    flex: 1;
}

.about-hero-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

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

.philosophy-content {
    max-width: 1400px;
    margin: 0 auto;
}

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

.philosophy-split {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.philosophy-text {
    flex: 1.5;
}

.philosophy-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.philosophy-image {
    flex: 1;
}

.philosophy-image img {
    width: 100%;
    border-radius: 8px;
}

.journey-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.timeline {
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

.timeline-year {
    font-size: 2rem;
    font-weight: 700;
    color: #1a73e8;
    min-width: 120px;
}

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

.timeline-content p {
    color: #555;
    line-height: 1.7;
}

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

.section-header-left {
    max-width: 1400px;
    margin: 0 auto 3rem;
}

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

.section-header-left p {
    font-size: 1.2rem;
    color: #555;
}

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

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

.member-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.member-role {
    color: #1a73e8;
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-bio {
    color: #555;
    line-height: 1.7;
}

.values-split {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
    gap: 4rem;
}

.values-image {
    flex: 1;
}

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

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

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

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

.value-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    color: #1a1a1a;
}

.value-item p {
    color: #555;
    line-height: 1.7;
}

.stats-section {
    background-color: #ffffff;
    padding: 5rem 2rem;
}

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

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

.stat-card {
    flex: 1 1 calc(25% - 1.5rem);
    text-align: center;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #1a73e8;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    color: #555;
    font-size: 1rem;
}

.approach-detail {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

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

.approach-image-side {
    flex: 1;
}

.approach-image-side img {
    width: 100%;
    border-radius: 8px;
}

.approach-text-side {
    flex: 1;
}

.approach-text-side h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.approach-text-side p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.contact-hero {
    background: linear-gradient(135deg, #1a73e8 0%, #1557b0 100%);
    padding: 4rem 2rem;
    text-align: center;
    color: #ffffff;
}

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

.contact-hero-content p {
    font-size: 1.2rem;
    opacity: 0.95;
}

.contact-main {
    padding: 5rem 2rem;
}

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

.contact-info {
    flex: 1;
}

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

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

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

.info-block p {
    color: #555;
    line-height: 1.7;
}

.contact-form-container {
    flex: 1;
    background-color: #f8f9fa;
    padding: 3rem;
    border-radius: 8px;
}

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    font-weight: normal;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.3rem;
    width: auto;
}

.checkbox-label a {
    color: #1a73e8;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

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

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

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

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

.expectation-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a73e8;
    margin-bottom: 1rem;
}

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

.expectation-card p {
    color: #555;
    line-height: 1.7;
}

.faq-contact {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.faq-items {
    max-width: 1000px;
    margin: 0 auto;
}

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

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

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

.thanks-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 2rem;
}

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

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

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-confirmation {
    background-color: #f0f7ff;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 2rem;
}

.service-note {
    color: #1a73e8;
    font-weight: 600;
}

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

.next-steps h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.steps-grid {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.step-icon {
    display: block;
    width: 50px;
    height: 50px;
    background-color: #1a73e8;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

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

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-secondary {
    display: inline-block;
    background-color: #f8f9fa;
    color: #1a73e8;
    padding: 1rem 2rem;
    border: 2px solid #1a73e8;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #e8f0fe;
}

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

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

.additional-info p {
    color: #555;
    line-height: 1.7;
}

.additional-info a {
    color: #1a73e8;
    text-decoration: none;
}

.additional-info a:hover {
    text-decoration: underline;
}

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

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

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

.legal-date {
    color: #666;
    margin-bottom: 2rem;
    font-style: italic;
}

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

.legal-container h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.legal-container p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

.legal-container ul li {
    color: #555;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

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

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

.legal-note {
    font-style: italic;
    color: #666;
    margin-top: 2rem;
}

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

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 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,
    .approach-split,
    .testimonials-split,
    .form-split,
    .service-detail-split,
    .about-hero-split,
    .philosophy-split,
    .values-split,
    .approach-split-reverse,
    .contact-split {
        flex-direction: column;
    }

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

    .hero-right {
        min-height: 400px;
    }

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

    .challenge-item,
    .expectation-card,
    .team-member {
        flex: 1 1 100%;
    }

    .stat-card {
        flex: 1 1 calc(50% - 1rem);
    }

    .steps-grid {
        flex-direction: column;
    }
}

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

    .main-nav ul {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .hero-left h1,
    .about-hero-left h1,
    .hero-content-center h1,
    .contact-hero-content h1 {
        font-size: 2rem;
    }

    .section-header h2,
    .stats-section h2,
    .journey-section h2,
    .team-section h2,
    .expectations-section h2,
    .faq-header h2 {
        font-size: 1.8rem;
    }

    .stat-card {
        flex: 1 1 100%;
    }

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

    .cookie-actions {
        width: 100%;
    }

    .btn-accept,
    .btn-reject {
        flex: 1;
    }
}