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

:root {
    --primary-color: #2E7D32;
    --primary-dark: #1B5E20;
    --secondary-color: #FF6F00;
    --text-dark: #212121;
    --text-gray: #616161;
    --text-light: #9E9E9E;
    --bg-light: #FAFAFA;
    --bg-white: #FFFFFF;
    --border-color: #E0E0E0;
    --success-color: #4CAF50;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
}

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

.ad-notice {
    background-color: var(--text-dark);
    color: var(--bg-white);
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.floating-nav {
    position: fixed;
    top: 32px;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 0 24px;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 16px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-md);
}

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

.main-nav {
    display: flex;
    gap: 32px;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--primary-color);
}

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

.menu-toggle span {
    width: 28px;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hero-asymmetric {
    margin-top: 100px;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 24px;
}

.hero-content-offset {
    width: 55%;
    padding-right: 60px;
    z-index: 2;
    position: relative;
}

.hero-text-block {
    max-width: 540px;
    margin-left: 80px;
}

.hero-text-block h1 {
    font-size: 56px;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-text-block p {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 32px;
    line-height: 1.6;
}

.cta-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 16px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

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

.hero-image-overlap {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 52%;
    height: 520px;
    overflow: hidden;
    border-radius: 24px 0 0 24px;
    box-shadow: var(--shadow-lg);
}

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

.intro-offset {
    padding: 120px 24px 80px;
    background-color: var(--bg-light);
}

.intro-narrow {
    max-width: 680px;
    margin-left: 15%;
}

.intro-narrow h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 700;
}

.intro-narrow p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 16px;
}

.intro-narrow a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.intro-narrow a:hover {
    text-decoration: underline;
}

.services-creative {
    padding: 100px 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.services-header-left {
    max-width: 520px;
    margin-bottom: 60px;
    padding-left: 40px;
}

.services-header-left h2 {
    font-size: 44px;
    margin-bottom: 16px;
    font-weight: 700;
}

.services-header-left p {
    font-size: 18px;
    color: var(--text-gray);
}

.services-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.service-card {
    background-color: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    cursor: pointer;
}

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

.service-card.large-card {
    flex: 1 1 calc(60% - 12px);
    min-width: 320px;
}

.service-card:not(.large-card):not(.wide-card) {
    flex: 1 1 calc(40% - 12px);
    min-width: 280px;
}

.service-card.wide-card {
    flex: 1 1 100%;
    display: flex;
    flex-direction: row;
}

.service-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.service-card.wide-card img {
    width: 45%;
    height: auto;
}

.service-content {
    padding: 32px;
}

.service-card.wide-card .service-content {
    width: 55%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 700;
}

.service-content p {
    color: var(--text-gray);
    font-size: 16px;
    margin-bottom: 20px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.select-service {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service:hover {
    background-color: var(--primary-dark);
    transform: scale(1.02);
}

.testimonial-offset {
    background-color: var(--primary-color);
    padding: 80px 24px;
    position: relative;
}

.testimonial-block {
    max-width: 800px;
    margin-left: auto;
    margin-right: 120px;
}

.testimonial-block blockquote {
    border-left: 4px solid var(--secondary-color);
    padding-left: 32px;
}

.testimonial-block p {
    font-size: 24px;
    line-height: 1.6;
    color: var(--bg-white);
    font-style: italic;
    margin-bottom: 16px;
}

.testimonial-block cite {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    font-style: normal;
}

.approach-section {
    padding: 100px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.approach-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 40px;
    margin-bottom: 24px;
    font-weight: 700;
}

.approach-text p {
    font-size: 17px;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.approach-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

.form-section {
    background-color: var(--bg-light);
    padding: 100px 24px;
}

.form-container-asymmetric {
    max-width: 900px;
    margin-left: 10%;
}

.form-intro {
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 42px;
    margin-bottom: 16px;
    font-weight: 700;
}

.form-intro p {
    font-size: 18px;
    color: var(--text-gray);
}

.contact-form {
    background-color: var(--bg-white);
    padding: 48px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 24px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background-color: var(--bg-light);
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    padding: 18px 24px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.benefits-stacked {
    padding: 100px 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.benefits-stacked h2 {
    font-size: 44px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.benefit-item {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 16px;
    border-left: 6px solid var(--primary-color);
}

.benefit-item:nth-child(even) {
    margin-left: 80px;
    border-left: none;
    border-right: 6px solid var(--secondary-color);
}

.benefit-item h3 {
    font-size: 26px;
    margin-bottom: 12px;
    font-weight: 700;
}

.benefit-item p {
    font-size: 17px;
    color: var(--text-gray);
}

.disclaimer-section {
    background-color: #FFF3E0;
    padding: 48px 24px;
}

.disclaimer-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 32px;
    border-left: 4px solid var(--secondary-color);
}

.disclaimer-content p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

.site-footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 60px 24px 24px;
}

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

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

.footer-block h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--bg-white);
}

.footer-block p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

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

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

.footer-block ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-block ul li a:hover {
    color: var(--bg-white);
}

.footer-block .references {
    list-style: decimal;
    padding-left: 20px;
}

.footer-block .references li {
    margin-bottom: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(33, 33, 33, 0.98);
    padding: 24px;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    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: 32px;
}

.cookie-content p {
    color: var(--bg-white);
    font-size: 15px;
    flex: 1;
}

.cookie-content p a {
    color: var(--primary-color);
    text-decoration: none;
}

.cookie-content p a:hover {
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 32px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.btn-reject {
    background-color: transparent;
    color: var(--bg-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-reject:hover {
    border-color: var(--bg-white);
}

.page-hero-minimal {
    margin-top: 120px;
    padding: 80px 24px 60px;
    text-align: center;
    background-color: var(--bg-light);
}

.page-hero-minimal h1 {
    font-size: 52px;
    margin-bottom: 16px;
    font-weight: 800;
}

.page-hero-minimal p {
    font-size: 20px;
    color: var(--text-gray);
}

.about-story {
    padding: 100px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.story-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-text-wide {
    flex: 1.3;
}

.story-text-wide h2 {
    font-size: 40px;
    margin-bottom: 24px;
    font-weight: 700;
}

.story-text-wide p {
    font-size: 17px;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.story-image-aside {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

.philosophy-section {
    background-color: var(--bg-light);
    padding: 100px 24px;
}

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

.philosophy-content h2 {
    font-size: 44px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

.philosophy-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.philosophy-item {
    flex: 1 1 calc(50% - 16px);
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 36px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

.philosophy-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-color);
    font-weight: 700;
}

.philosophy-item p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
}

.team-asymmetric {
    padding: 100px 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.team-asymmetric h2 {
    font-size: 44px;
    margin-bottom: 32px;
    font-weight: 700;
    padding-left: 40px;
}

.team-description {
    max-width: 700px;
    margin-bottom: 48px;
    padding-left: 40px;
}

.team-description p {
    font-size: 17px;
    color: var(--text-gray);
    margin-bottom: 16px;
}

.team-image {
    width: 85%;
    margin-left: auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.team-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.values-section {
    background-color: var(--bg-light);
    padding: 100px 24px;
}

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

.values-content h2 {
    font-size: 40px;
    margin-bottom: 32px;
    font-weight: 700;
}

.values-content p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.cta-about {
    padding: 100px 24px;
    text-align: center;
}

.cta-content h2 {
    font-size: 44px;
    margin-bottom: 16px;
    font-weight: 700;
}

.cta-content p {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 32px;
}

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 16px 48px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

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

.page-hero-services {
    margin-top: 120px;
    padding: 100px 24px 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    text-align: center;
}

.hero-services-content h1 {
    font-size: 52px;
    color: var(--bg-white);
    margin-bottom: 16px;
    font-weight: 800;
}

.hero-services-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.services-detailed {
    padding: 100px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-detailed {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

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

.service-image-left,
.service-image-right {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

.service-info-right,
.service-info-left {
    flex: 1;
}

.service-info-right h2,
.service-info-left h2 {
    font-size: 36px;
    margin-bottom: 16px;
    font-weight: 700;
}

.service-price-large {
    font-size: 32px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 20px;
}

.service-info-right p,
.service-info-left p {
    font-size: 17px;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin: 24px 0;
}

.service-features li {
    padding-left: 32px;
    margin-bottom: 12px;
    position: relative;
    font-size: 16px;
    color: var(--text-gray);
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 20px;
}

.select-service-page {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 16px;
}

.select-service-page:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.pricing-info {
    background-color: var(--bg-light);
    padding: 60px 24px;
}

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

.pricing-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    font-weight: 700;
}

.pricing-content p {
    font-size: 17px;
    color: var(--text-gray);
    margin-bottom: 16px;
}

.form-section-services {
    padding: 100px 24px;
    background-color: var(--bg-white);
}

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

.form-container-services h2 {
    font-size: 40px;
    margin-bottom: 16px;
    font-weight: 700;
    text-align: center;
}

.form-container-services > p {
    font-size: 18px;
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 40px;
}

.page-hero-contact {
    margin-top: 120px;
    padding: 80px 24px 60px;
    background-color: var(--bg-light);
}

.page-hero-contact h1 {
    font-size: 52px;
    margin-bottom: 16px;
    font-weight: 800;
    text-align: center;
}

.page-hero-contact p {
    font-size: 20px;
    color: var(--text-gray);
    text-align: center;
}

.contact-info-layout {
    padding: 100px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-details-asymmetric {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-block {
    flex: 1;
}

.contact-block h2 {
    font-size: 40px;
    margin-bottom: 40px;
    font-weight: 700;
}

.contact-item {
    margin-bottom: 32px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-weight: 700;
}

.contact-item p {
    font-size: 17px;
    color: var(--text-gray);
    line-height: 1.6;
}

.contact-item p.note {
    font-size: 15px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 8px;
}

.contact-image-block {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

.faq-section {
    background-color: var(--bg-light);
    padding: 100px 24px;
}

.faq-content {
    max-width: 1100px;
    margin: 0 auto;
}

.faq-content h2 {
    font-size: 40px;
    margin-bottom: 48px;
    font-weight: 700;
    text-align: center;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.faq-item {
    flex: 1 1 calc(50% - 16px);
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 700;
}

.faq-item p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
}

.alternative-contact {
    padding: 80px 24px;
    max-width: 900px;
    margin: 0 auto;
}

.alternative-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    font-weight: 700;
}

.alternative-content p {
    font-size: 17px;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.contact-methods {
    list-style: none;
    margin: 24px 0;
    padding-left: 0;
}

.contact-methods li {
    padding-left: 32px;
    margin-bottom: 16px;
    position: relative;
    font-size: 16px;
    color: var(--text-gray);
}

.contact-methods li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 20px;
}

.thanks-hero {
    margin-top: 120px;
    padding: 100px 24px;
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-icon {
    margin-bottom: 32px;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 16px;
    font-weight: 800;
    color: var(--text-dark);
}

.thanks-message {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 24px;
}

.service-confirmation {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 12px;
    margin-top: 24px;
}

.service-confirmation p {
    font-size: 18px;
    color: var(--text-dark);
}

.next-steps {
    background-color: var(--bg-light);
    padding: 100px 24px;
}

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

.steps-content h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.step-item {
    flex: 1 1 calc(50% - 16px);
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 36px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.step-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 700;
}

.step-item p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
}

.thanks-resources {
    padding: 80px 24px;
}

.resources-content {
    max-width: 1100px;
    margin: 0 auto;
}

.resources-content h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 48px;
    font-weight: 700;
}

.resources-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.resource-card {
    flex: 1 1 calc(33.333% - 16px);
    min-width: 250px;
    background-color: var(--bg-light);
    padding: 32px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.resource-card h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 700;
}

.resource-card p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
}

.thanks-note {
    background-color: #FFF9E6;
    padding: 40px 24px;
}

.note-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 24px;
    border-left: 4px solid var(--secondary-color);
}

.note-content p {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.7;
}

.legal-page {
    margin-top: 100px;
    padding: 80px 24px;
}

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

.legal-content h1 {
    font-size: 44px;
    margin-bottom: 16px;
    font-weight: 800;
}

.last-updated {
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    font-weight: 700;
    color: var(--text-dark);
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    font-weight: 700;
    color: var(--primary-color);
}

.legal-content p {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 16px;
    line-height: 1.7;
}

.legal-content ul,
.legal-content ol {
    margin: 16px 0 16px 24px;
}

.legal-content li {
    margin-bottom: 8px;
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: none;
}

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

.gdpr-table,
.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    border-radius: 8px;
    overflow: hidden;
}

.gdpr-table thead,
.cookies-table thead {
    background-color: var(--primary-color);
}

.gdpr-table th,
.cookies-table th {
    padding: 16px;
    text-align: left;
    color: var(--bg-white);
    font-weight: 600;
    font-size: 15px;
}

.gdpr-table td,
.cookies-table td {
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
    font-size: 15px;
    color: var(--text-gray);
}

.gdpr-table tr:last-child td,
.cookies-table tr:last-child td {
    border-bottom: none;
}

@media (max-width: 768px) {
    .floating-nav {
        top: 40px;
        padding: 0 16px;
    }

    .nav-container {
        padding: 12px 20px;
    }

    .main-nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-asymmetric {
        flex-direction: column;
        margin-top: 80px;
        min-height: auto;
    }

    .hero-content-offset {
        width: 100%;
        padding-right: 0;
    }

    .hero-text-block {
        margin-left: 0;
    }

    .hero-text-block h1 {
        font-size: 36px;
    }

    .hero-image-overlap {
        position: relative;
        width: 100%;
        margin-top: 32px;
        border-radius: 16px;
    }

    .intro-narrow {
        margin-left: 0;
    }

    .intro-narrow h2 {
        font-size: 28px;
    }

    .services-header-left {
        padding-left: 0;
    }

    .services-header-left h2 {
        font-size: 32px;
    }

    .service-card.large-card,
    .service-card:not(.large-card):not(.wide-card),
    .service-card.wide-card {
        flex: 1 1 100%;
    }

    .service-card.wide-card {
        flex-direction: column;
    }

    .service-card.wide-card img {
        width: 100%;
        height: 260px;
    }

    .service-card.wide-card .service-content {
        width: 100%;
    }

    .testimonial-block {
        margin-right: 0;
    }

    .testimonial-block p {
        font-size: 18px;
    }

    .approach-split {
        flex-direction: column;
    }

    .form-container-asymmetric {
        margin-left: 0;
    }

    .form-intro h2 {
        font-size: 32px;
    }

    .contact-form {
        padding: 32px 24px;
    }

    .benefit-item:nth-child(even) {
        margin-left: 0;
        border-right: none;
        border-left: 6px solid var(--secondary-color);
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }

    .story-layout {
        flex-direction: column;
    }

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

    .team-image {
        width: 100%;
    }

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

    .contact-details-asymmetric {
        flex-direction: column;
    }

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

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

    .step-item {
        flex: 1 1 100%;
    }

    .resources-links {
        flex-direction: column;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .hero-text-block h1 {
        font-size: 28px;
    }

    .hero-text-block p {
        font-size: 16px;
    }

    .page-hero-minimal h1,
    .page-hero-contact h1,
    .thanks-content h1 {
        font-size: 32px;
    }

    .benefits-stacked h2,
    .services-header-left h2 {
        font-size: 28px;
    }
}