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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

.main-nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    z-index: 1000;
    padding: 1.2rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

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

.nav-links a:hover {
    color: #3498db;
}

.ad-notice {
    background: #f8f9fa;
    padding: 0.4rem 0.9rem;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #6c757d;
    border: 1px solid #e9ecef;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 2000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

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

.btn-cookie {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #3498db;
    color: #ffffff;
}

.btn-cookie:hover {
    background: #2980b9;
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
}

.btn-outline:hover {
    background: #ffffff;
    color: #2c3e50;
}

.hero-asymmetric {
    margin-top: 80px;
    min-height: 85vh;
    display: flex;
    position: relative;
    overflow: hidden;
}

.hero-content-offset {
    flex: 0 0 45%;
    padding: 6rem 3rem 4rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f8f9fa;
}

.hero-content-offset h1 {
    font-size: 3.2rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 800;
}

.hero-content-offset p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 2rem;
    max-width: 500px;
}

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

.cta-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.3);
}

.hero-visual-block {
    flex: 1;
    position: relative;
    background: #e9ecef;
}

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

.intro-offset {
    padding: 5rem 3rem;
    position: relative;
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    gap: 4rem;
}

.narrow-column {
    flex: 0 0 60%;
    padding-right: 3rem;
}

.narrow-column h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

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

.stat-block-floating {
    flex: 1;
    background: #3498db;
    padding: 3rem 2rem;
    border-radius: 8px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-self: flex-start;
    margin-top: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

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

.approach-irregular {
    padding: 6rem 3rem;
    background: #ffffff;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.approach-image-left {
    flex: 0 0 42%;
    background: #e9ecef;
}

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

.approach-content-right {
    flex: 1;
}

.approach-content-right h3 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
    font-weight: 700;
}

.approach-content-right p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 2rem;
}

.approach-list {
    list-style: none;
    padding: 0;
}

.approach-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    color: #2c3e50;
}

.approach-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

.services-showcase {
    padding: 6rem 3rem;
    background: #f8f9fa;
}

.services-header-asymmetric {
    max-width: 600px;
    margin-bottom: 4rem;
    padding-left: 8%;
}

.services-header-asymmetric h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

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

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

.service-card {
    flex: 0 0 calc(50% - 1.25rem);
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

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

.service-image {
    width: 100%;
    height: 250px;
    background: #e9ecef;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-info {
    padding: 2rem;
}

.service-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.service-info p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.price {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 1.5rem;
}

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

.btn-select-service:hover {
    background: #1a252f;
    transform: translateY(-2px);
}

.contact-form-asymmetric {
    padding: 6rem 3rem;
    background: #ffffff;
}

.form-container-offset {
    max-width: 700px;
    margin-left: 15%;
    padding: 3rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.form-container-offset h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.form-container-offset > p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 2.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e9ecef;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.form-group input[readonly] {
    background: #e9ecef;
    cursor: not-allowed;
}

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

.btn-submit:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.trust-indicators {
    padding: 5rem 3rem;
    background: #2c3e50;
    color: #ffffff;
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    gap: 4rem;
}

.testimonial-offset {
    flex: 0 0 55%;
}

.testimonial-offset blockquote {
    font-size: 1.4rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 2rem;
}

.testimonial-offset blockquote:before {
    content: """;
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 4rem;
    color: #3498db;
    font-family: Georgia, serif;
}

.testimonial-offset cite {
    display: block;
    font-size: 1rem;
    font-style: normal;
    color: #95a5a6;
    margin-top: 1rem;
}

.client-logos-block {
    flex: 1;
    display: flex;
    align-items: center;
}

.clients-intro {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #ecf0f1;
}

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

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

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

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

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #95a5a6;
}

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

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

.footer-column ul li a {
    color: #95a5a6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #3498db;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 2rem;
    background: rgba(255,255,255,0.05);
    border-radius: 6px;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #95a5a6;
}

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

.footer-bottom p {
    font-size: 0.9rem;
    color: #7f8c8d;
}

.about-hero-offset {
    margin-top: 80px;
    padding: 6rem 3rem 4rem;
    background: #f8f9fa;
    max-width: 900px;
    margin-left: 10%;
}

.about-content-block h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 800;
}

.about-content-block p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #4a5568;
}

.story-section-irregular {
    padding: 6rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.story-text-narrow {
    max-width: 700px;
    margin-bottom: 4rem;
}

.story-text-narrow h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.story-text-narrow p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.philosophy-block-asymmetric {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-top: 4rem;
}

.philosophy-image {
    flex: 0 0 48%;
    background: #e9ecef;
}

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

.philosophy-content {
    flex: 1;
}

.philosophy-content h3 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
    font-weight: 700;
}

.philosophy-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a5568;
}

.expertise-showcase {
    padding: 6rem 3rem;
    background: #f8f9fa;
}

.expertise-showcase h2 {
    font-size: 2.6rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
    text-align: center;
    font-weight: 700;
}

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

.expertise-card {
    flex: 0 0 calc(50% - 1rem);
    padding: 2.5rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

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

.expertise-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
}

.approach-methodology {
    padding: 6rem 3rem;
    background: #ffffff;
}

.methodology-content-offset {
    max-width: 1200px;
    margin-left: 8%;
}

.methodology-content-offset h2 {
    font-size: 2.6rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.methodology-content-offset > p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 3rem;
    max-width: 700px;
}

.process-steps-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.step-block {
    flex: 0 0 calc(50% - 1.25rem);
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.step-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #3498db;
    margin-bottom: 1rem;
}

.step-block h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
    font-weight: 700;
}

.step-block p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
}

.team-section-asymmetric {
    padding: 6rem 3rem;
    background: #2c3e50;
    color: #ffffff;
}

.team-section-asymmetric h2 {
    font-size: 2.6rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
}

.team-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.team-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #ecf0f1;
}

.team-image-block {
    max-width: 1200px;
    margin: 0 auto;
    background: #34495e;
}

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

.values-section {
    padding: 6rem 3rem;
    background: #ffffff;
}

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

.values-content-irregular h2 {
    font-size: 2.6rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
    font-weight: 700;
}

.values-list-offset {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.value-item {
    flex: 0 0 calc(50% - 1.5rem);
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
    font-weight: 700;
}

.value-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
}

.services-hero-asymmetric {
    margin-top: 80px;
    padding: 5rem 3rem 4rem;
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    color: #ffffff;
    text-align: center;
}

.services-hero-asymmetric h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.services-hero-asymmetric p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.service-detail-section {
    padding: 5rem 3rem;
}

.bg-alternate {
    background: #f8f9fa;
}

.service-detail-card-offset {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

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

.service-detail-image {
    flex: 0 0 45%;
    background: #e9ecef;
}

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

.service-detail-content {
    flex: 1;
}

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

.service-price-display {
    font-size: 1.6rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 1.5rem;
}

.service-detail-content > p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.service-detail-content h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

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

.service-detail-content ul li {
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
    font-size: 1rem;
    color: #2c3e50;
}

.service-detail-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

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

.btn-service-cta:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.service-cta-section {
    padding: 5rem 3rem;
    background: #2c3e50;
    text-align: center;
    color: #ffffff;
}

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

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

.btn-primary-large {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary-large:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.contact-hero-offset {
    margin-top: 80px;
    padding: 5rem 3rem 4rem;
    background: #f8f9fa;
    max-width: 800px;
    margin-left: 12%;
}

.contact-hero-offset h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 800;
}

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

.contact-info-asymmetric {
    padding: 5rem 3rem;
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    gap: 4rem;
    align-items: flex-start;
}

.contact-details-block {
    flex: 0 0 45%;
}

.contact-details-block h2 {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

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

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    color: #2c3e50;
    font-weight: 700;
}

.contact-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a5568;
}

.email-display {
    color: #2c3e50;
    font-weight: 600;
}

.hours-note {
    font-size: 0.95rem;
    color: #7f8c8d;
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-visual-block {
    flex: 1;
    background: #e9ecef;
}

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

.location-context {
    padding: 5rem 3rem;
    background: #ffffff;
}

.location-content-offset {
    max-width: 900px;
    margin-left: 10%;
}

.location-content-offset h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.location-content-offset p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 1.2rem;
}

.quick-contact-section {
    padding: 5rem 3rem;
    background: #f8f9fa;
    text-align: center;
}

.quick-contact-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.quick-contact-content p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-contact-cta {
    display: inline-block;
    padding: 1.1rem 2.2rem;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-contact-cta:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.thanks-hero-centered {
    margin-top: 80px;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 3rem;
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    color: #ffffff;
}

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

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.thanks-content > p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.confirmation-details {
    background: rgba(255,255,255,0.1);
    padding: 2.5rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    text-align: left;
}

.confirmation-details h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
}

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

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

.step-icon {
    flex: 0 0 50px;
    height: 50px;
    background: #3498db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

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

.step-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #ecf0f1;
}

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

.btn-primary {
    padding: 1rem 2rem;
    background: #ffffff;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    padding: 1rem 2rem;
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    border: 2px solid #ffffff;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.additional-resources {
    padding: 5rem 3rem;
    background: #ffffff;
}

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

.resources-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    text-align: center;
    font-weight: 700;
}

.resources-content > p {
    font-size: 1.05rem;
    color: #4a5568;
    text-align: center;
    margin-bottom: 3rem;
}

.resource-links {
    display: flex;
    gap: 2rem;
}

.resource-card {
    flex: 1;
    padding: 2.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.resource-card:hover {
    background: #ffffff;
    border-color: #3498db;
    transform: translateY(-3px);
}

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

.resource-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a5568;
}

.legal-page {
    margin-top: 80px;
    padding: 5rem 3rem;
    background: #ffffff;
}

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

.legal-content h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.last-updated {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
}

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

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

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

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

.legal-content ul li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 0.7rem;
}

.contact-info-legal {
    padding: 1.5rem;
    background: #f8f9fa;
    border-left: 4px solid #3498db;
    margin: 1.5rem 0;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #2c3e50;
}

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

.cookie-table thead {
    background: #f8f9fa;
}

.cookie-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 700;
    color: #2c3e50;
    border-bottom: 2px solid #e9ecef;
}

.cookie-table td {
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
    color: #4a5568;
}

@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
    }

    .hero-content-offset {
        flex: 1;
    }

    .hero-visual-block {
        min-height: 400px;
    }

    .intro-offset {
        flex-direction: column;
        gap: 2rem;
    }

    .narrow-column {
        flex: 1;
        padding-right: 0;
    }

    .approach-irregular {
        flex-direction: column;
        gap: 3rem;
    }

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

    .services-grid-offset {
        flex-direction: column;
    }

    .service-card {
        flex: 1;
    }

    .trust-indicators {
        flex-direction: column;
        gap: 3rem;
    }

    .testimonial-offset {
        flex: 1;
    }

    .philosophy-block-asymmetric {
        flex-direction: column;
    }

    .philosophy-image {
        flex: 1;
    }

    .expertise-grid-offset {
        flex-direction: column;
    }

    .expertise-card {
        flex: 1;
    }

    .process-steps-irregular {
        flex-direction: column;
    }

    .step-block {
        flex: 1;
    }

    .values-list-offset {
        flex-direction: column;
    }

    .value-item {
        flex: 1;
    }

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

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

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

    .contact-details-block {
        flex: 1;
    }

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

@media (max-width: 768px) {
    .nav-links {
        gap: 1.5rem;
        font-size: 0.9rem;
    }

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

    .hero-content-offset p {
        font-size: 1rem;
    }

    .narrow-column h2 {
        font-size: 2rem;
    }

    .services-header-asymmetric h2 {
        font-size: 2.2rem;
    }

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

    .about-hero-offset {
        margin-left: 0;
    }

    .contact-hero-offset {
        margin-left: 0;
    }

    .location-content-offset {
        margin-left: 0;
    }

    .methodology-content-offset {
        margin-left: 0;
    }

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

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

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