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

:root {
    --primary-color: #2c5f8d;
    --primary-dark: #1e4563;
    --secondary-color: #e8a547;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-white);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

.main-nav {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
}

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

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

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

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

.split-left,
.split-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 3rem;
}

.split-left {
    background: var(--bg-light);
}

.hero-content {
    max-width: 550px;
}

.hero-content h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-image {
    overflow: hidden;
    padding: 0;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    border-radius: 6px;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.cta-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--primary-color);
    font-weight: 600;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    transition: var(--transition);
}

.cta-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.cta-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--secondary-color);
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 6px;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.cta-large:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.split-container {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

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

.split-visual,
.split-text {
    flex: 1;
    padding: 4rem 3rem;
}

.split-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.split-visual img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.split-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.split-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.value-proposition {
    background: var(--bg-white);
    padding: 5rem 0;
}

.feature-list {
    margin-top: 2rem;
}

.feature-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-dark);
    font-size: 1.05rem;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.services-highlight {
    background: var(--bg-light);
    padding: 6rem 2rem;
}

.section-header {
    max-width: 700px;
    margin: 0 auto 4rem;
}

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

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

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

.service-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.card-icon {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.price {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.cta-center {
    text-align: center;
    margin-top: 3rem;
}

.process-section {
    padding: 6rem 0;
    background: var(--bg-white);
}

.process-steps {
    margin-top: 2rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.3;
    min-width: 60px;
}

.step-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.step-content p {
    color: var(--text-light);
}

.testimonials-section {
    background: var(--primary-color);
    padding: 5rem 2rem;
    color: white;
}

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

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: white;
}

.testimonials-slider {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    opacity: 0.9;
}

.cta-section-split {
    background: var(--bg-light);
}

.cta-content {
    background: var(--bg-white);
}

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

.cta-visual {
    padding: 0;
}

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

.form-section {
    padding: 6rem 2rem;
    background: var(--bg-white);
}

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

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.form-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.order-form {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 8px;
}

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

.form-row {
    display: flex;
    gap: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

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

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-weight: 400;
}

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

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

.btn-submit:hover {
    background: var(--primary-dark);
}

.main-footer {
    background: var(--text-dark);
    color: white;
    padding: 4rem 2rem 2rem;
}

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

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

.footer-column h3,
.footer-column h4 {
    margin-bottom: 1rem;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-column a:hover {
    color: white;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: white;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    transition: var(--transition);
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

.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-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

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

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

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

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

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

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

.page-hero {
    background: var(--bg-light);
    padding: 5rem 2rem;
    text-align: center;
}

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

.hero-content.centered p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.services-detailed {
    padding: 4rem 2rem;
}

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

.service-item {
    margin-bottom: 4rem;
}

.split-service {
    display: flex;
    gap: 3rem;
    align-items: center;
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 8px;
}

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

.service-info {
    flex: 2;
}

.service-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-info p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.service-features li {
    padding-left: 1.8rem;
    position: relative;
    color: var(--text-dark);
}

.service-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.service-pricing {
    flex: 1;
    display: flex;
    align-items: center;
}

.price-box {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
    width: 100%;
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-amount {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.price-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.btn-order {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--primary-color);
    color: white;
    border-radius: 6px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-order:hover {
    background: var(--primary-dark);
}

.pricing-notes {
    padding: 4rem 2rem;
    background: var(--bg-white);
}

.notes-grid {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.note-item {
    flex: 1;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.note-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.note-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.cta-services {
    background: var(--primary-color);
    padding: 5rem 2rem;
    text-align: center;
}

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

.cta-content-center h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-services .cta-content-center h2 {
    color: white;
}

.cta-services .cta-content-center p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.about-hero {
    background: var(--bg-white);
    padding: 4rem 0;
}

.lead-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-light);
}

.story-section {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.story-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.story-section p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.values-section {
    padding: 6rem 2rem;
    background: var(--bg-white);
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 2rem;
}

.value-icon {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.team-section {
    background: var(--bg-light);
    padding: 5rem 0;
}

.stats-section {
    background: var(--primary-color);
    padding: 5rem 2rem;
}

.stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 3rem;
}

.stat-item {
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

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

.cta-about {
    padding: 6rem 2rem;
    background: var(--bg-white);
}

.cta-about h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.cta-about p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

.contact-section {
    padding: 4rem 2rem;
}

.contact-info {
    padding: 2rem;
}

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

.info-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.info-block p {
    color: var(--text-light);
    line-height: 1.8;
}

.info-block a {
    color: var(--primary-color);
}

.small-note {
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.contact-map {
    padding: 0;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
}

.faq-section {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.cta-contact {
    padding: 5rem 2rem;
    background: var(--primary-color);
}

.cta-contact .cta-content-center h2 {
    color: white;
}

.cta-contact .cta-content-center p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background: var(--bg-light);
}

.thanks-container {
    max-width: 700px;
    text-align: center;
    background: var(--bg-white);
    padding: 4rem 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.thanks-icon {
    color: var(--success-color);
    margin-bottom: 2rem;
}

.thanks-icon svg {
    margin: 0 auto;
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.thanks-message {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.service-info {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 6px;
    margin: 2rem 0;
}

.thanks-next-steps {
    text-align: left;
    margin: 3rem 0;
}

.thanks-next-steps h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.steps-list {
    list-style: none;
    counter-reset: steps;
}

.steps-list li {
    counter-increment: steps;
    padding: 1rem 0 1rem 3rem;
    position: relative;
    color: var(--text-dark);
    line-height: 1.7;
}

.steps-list li::before {
    content: counter(steps);
    position: absolute;
    left: 0;
    top: 1rem;
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

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

.btn-primary {
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    border-radius: 6px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-secondary {
    padding: 1rem 2rem;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.thanks-contact {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.thanks-contact a {
    color: var(--primary-color);
    font-weight: 600;
}

.legal-page {
    padding: 4rem 2rem;
    background: var(--bg-white);
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.updated {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 3rem;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.legal-page h4 {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.legal-page p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-page ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-page li {
    list-style: disc;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-page a {
    color: var(--primary-color);
    text-decoration: underline;
}

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

.gdpr-table th,
.gdpr-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.gdpr-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
}

.gdpr-table td {
    color: var(--text-light);
}

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg-white);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transition: var(--transition);
        box-shadow: var(--shadow);
    }

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

    .nav-toggle {
        display: flex;
    }

    .hero-split,
    .split-container,
    .split-service {
        flex-direction: column;
    }

    .split-container.reverse,
    .split-service.reverse {
        flex-direction: column;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .form-row {
        flex-direction: column;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

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

    .stats-grid {
        flex-direction: column;
        gap: 2rem;
    }

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

    .thanks-container {
        padding: 2rem 1.5rem;
    }

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

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .split-left,
    .split-right,
    .split-visual,
    .split-text {
        padding: 2rem 1.5rem;
    }

    .services-grid {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        max-width: 100%;
    }

    .order-form {
        padding: 2rem 1.5rem;
    }

    .page-hero {
        padding: 3rem 1.5rem;
    }

    .hero-content.centered h1 {
        font-size: 2rem;
    }

    .split-service {
        padding: 2rem 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}
