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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

a:hover {
    color: #4299e1;
}

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
}

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

.nav-right a {
    font-size: 0.95rem;
    font-weight: 500;
    color: #4a5568;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #718096;
    padding: 0.25rem 0.75rem;
    background-color: #edf2f7;
    border-radius: 4px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3748;
    color: #ffffff;
    padding: 1.5rem 5%;
    z-index: 2000;
    display: none;
}

.cookie-banner.active {
    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;
    font-size: 0.9rem;
}

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

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

.btn-accept {
    background-color: #10b981;
    color: #ffffff;
}

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

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

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

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

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

.hero-text h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.hero-text p {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #3182ce;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #2c5282;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(49, 130, 206, 0.3);
}

.split-intro {
    display: flex;
    min-height: 400px;
}

.split-content-left,
.split-content-right {
    flex: 1;
    display: flex;
    align-items: center;
}

.content-inner {
    padding: 4rem 5%;
    width: 100%;
}

.split-content-left h2,
.split-content-right h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.split-content-left p,
.split-content-right p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1rem;
}

.split-content-right img {
    width: 100%;
    height: 100%;
}

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

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

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

.section-header p {
    font-size: 1.1rem;
    color: #4a5568;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
}

.card-body {
    padding: 2rem;
}

.card-body h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a202c;
}

.card-body p {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #3182ce;
    margin-bottom: 1.5rem;
}

.btn-select-service {
    width: 100%;
    padding: 0.75rem 1.5rem;
    background-color: #3182ce;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: #2c5282;
}

.cta-split {
    padding: 5rem 5%;
    text-align: center;
    color: #ffffff;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #ffffff;
    color: #2d3748;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

.split-benefits {
    display: flex;
}

.benefit-visual {
    flex: 1;
    overflow: hidden;
}

.benefit-visual img {
    width: 100%;
    height: 100%;
}

.benefit-content {
    flex: 1;
    padding: 4rem 5%;
    background-color: #f7fafc;
}

.benefit-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1a202c;
}

.benefit-list {
    list-style: none;
}

.benefit-list li {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.benefit-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

.benefit-list li strong {
    color: #1a202c;
}

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

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

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

.form-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 3rem;
}

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

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

.form-group label {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2d3748;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    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: #3182ce;
}

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

.btn-submit:hover {
    background-color: #2c5282;
}

.disclaimer-section {
    padding: 3rem 5%;
    background-color: #fef5e7;
    border-top: 2px solid #f59e0b;
    border-bottom: 2px solid #f59e0b;
}

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

.disclaimer-content p {
    font-size: 0.95rem;
    color: #78350f;
    line-height: 1.8;
}

.footer {
    background-color: #1a202c;
    color: #cbd5e0;
    padding: 4rem 5% 2rem;
}

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

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-col p,
.footer-col ul {
    font-size: 0.95rem;
    line-height: 1.8;
}

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #2d3748;
    font-size: 0.9rem;
}

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

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

.page-hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.page-hero-content p {
    font-size: 1.2rem;
    color: #4a5568;
}

.page-hero-image {
    flex: 1;
    overflow: hidden;
}

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

.about-content-split {
    display: flex;
}

.content-block-left {
    flex: 1;
    padding: 4rem 5%;
}

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

.content-block-left p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.content-block-right {
    flex: 1;
    padding: 4rem 5%;
    display: flex;
    align-items: center;
}

.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #3182ce;
}

.stat-label {
    font-size: 1rem;
    color: #4a5568;
    margin-top: 0.5rem;
}

.philosophy-section {
    padding: 5rem 5%;
    background-color: #ffffff;
}

.philosophy-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a202c;
}

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

.philosophy-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background-color: #f7fafc;
    border-radius: 8px;
}

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

.philosophy-item p {
    font-size: 1rem;
    color: #4a5568;
}

.team-split {
    display: flex;
}

.team-image {
    flex: 1;
    overflow: hidden;
}

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

.team-content {
    flex: 1;
    padding: 4rem 5%;
    background-color: #f7fafc;
}

.team-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.team-content p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.process-section {
    padding: 5rem 5%;
    background-color: #ffffff;
}

.process-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    color: #1a202c;
}

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

.process-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

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

.process-step h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1a202c;
}

.process-step p {
    font-size: 1rem;
    color: #4a5568;
}

.cta-about {
    padding: 4rem 5%;
    background-color: #f7fafc;
    text-align: center;
}

.cta-about h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1a202c;
}

.services-hero {
    padding: 4rem 5%;
    text-align: center;
    background-color: #f7fafc;
}

.services-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.services-hero p {
    font-size: 1.25rem;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
}

.service-detail-item {
    display: flex;
    min-height: 500px;
}

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

.service-detail-content {
    flex: 1;
    padding: 4rem 5%;
}

.service-detail-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.service-detail-content p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.service-detail-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-detail-content ul li {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-detail-content ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3182ce;
    font-weight: 700;
}

.service-detail-image {
    flex: 1;
    overflow: hidden;
}

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

.service-price-block {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.price-label {
    font-size: 1rem;
    color: #4a5568;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #3182ce;
}

.btn-service-action {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: #3182ce;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-service-action:hover {
    background-color: #2c5282;
}

.comparison-section {
    padding: 5rem 5%;
    background-color: #f7fafc;
}

.comparison-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a202c;
}

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

.comparison-col {
    flex: 1;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
}

.comparison-col h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #1a202c;
}

.comparison-list {
    list-style: none;
}

.comparison-list li {
    font-size: 1rem;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.comparison-list.negative li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #e53e3e;
    font-weight: 700;
}

.comparison-list.positive li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

.services-cta {
    padding: 4rem 5%;
    text-align: center;
    background-color: #ffffff;
}

.services-cta h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a202c;
}

.services-cta p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

.contact-hero {
    padding: 4rem 5%;
    text-align: center;
    background-color: #f7fafc;
}

.contact-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a202c;
}

.contact-hero p {
    font-size: 1.1rem;
    color: #4a5568;
}

.contact-split {
    display: flex;
}

.contact-info {
    flex: 1;
    padding: 4rem 5%;
    background-color: #ffffff;
}

.contact-info h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1a202c;
}

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

.contact-detail h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1a202c;
}

.contact-detail p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.8;
}

.contact-note {
    padding: 1.5rem;
    background-color: #edf2f7;
    border-radius: 6px;
    margin-top: 2rem;
}

.contact-note p {
    font-size: 0.95rem;
    color: #4a5568;
}

.contact-visual {
    flex: 1;
    overflow: hidden;
}

.contact-visual img {
    width: 100%;
    height: 100%;
}

.contact-reasons {
    padding: 5rem 5%;
    background-color: #f7fafc;
}

.contact-reasons h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a202c;
}

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

.reason-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
}

.reason-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a202c;
}

.reason-card p {
    font-size: 1rem;
    color: #4a5568;
}

.contact-expectations {
    padding: 5rem 5%;
    background-color: #ffffff;
}

.contact-expectations h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a202c;
}

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

.expectation-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.step-marker {
    width: 50px;
    height: 50px;
    background-color: #3182ce;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1a202c;
}

.step-content p {
    font-size: 1rem;
    color: #4a5568;
}

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

.thanks-content {
    max-width: 700px;
    text-align: center;
}

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

.thanks-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a202c;
}

.thanks-main-message {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

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

.thanks-service-selected p {
    font-size: 1.1rem;
    color: #2d3748;
}

.thanks-next-steps {
    text-align: left;
    margin-bottom: 2rem;
    padding: 2rem;
    background-color: #f7fafc;
    border-radius: 8px;
}

.thanks-next-steps h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a202c;
}

.thanks-next-steps ul {
    list-style: none;
}

.thanks-next-steps ul li {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.thanks-next-steps ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3182ce;
    font-weight: 700;
}

.thanks-contact-info {
    margin-bottom: 2rem;
}

.thanks-contact-info p {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 0.5rem;
}

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

.btn-primary,
.btn-secondary {
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #3182ce;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #2c5282;
}

.btn-secondary {
    background-color: #edf2f7;
    color: #2d3748;
}

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

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

.legal-page h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a202c;
}

.legal-intro {
    font-size: 1rem;
    color: #718096;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.legal-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2d3748;
}

.legal-content p {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 1rem;
    line-height: 1.8;
}

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

.legal-content ul li {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.legal-content a {
    color: #3182ce;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #2c5282;
}

@media (max-width: 1024px) {
    .hero-split,
    .split-intro,
    .split-benefits,
    .page-hero-split,
    .about-content-split,
    .team-split,
    .service-detail-item,
    .contact-split {
        flex-direction: column;
    }

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

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

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

@media (max-width: 768px) {
    .nav-right {
        gap: 1rem;
    }

    .nav-right a {
        font-size: 0.85rem;
    }

    .hero-text h1,
    .services-hero h1 {
        font-size: 2rem;
    }

    .section-header h2,
    .philosophy-section h2,
    .process-section h2,
    .comparison-section h2,
    .contact-reasons h2,
    .contact-expectations h2 {
        font-size: 1.75rem;
    }

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

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

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

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