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

:root {
    --primary-color: #2b5876;
    --secondary-color: #4e4376;
    --accent-color: #e84545;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-white);
}

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

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
}

.cookie-content a {
    color: var(--bg-white);
    text-decoration: underline;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-cookie-accept:hover {
    background: #d63737;
    transform: translateY(-2px);
}

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

.btn-cookie-reject:hover {
    background: var(--bg-white);
    color: var(--text-dark);
}

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 5%;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.nav-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.ad-label {
    font-size: 11px;
    text-transform: uppercase;
    color: var(--text-light);
    background: var(--bg-light);
    padding: 6px 12px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.nav-right a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
}

.nav-right a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-right a:hover::after {
    width: 100%;
}

.hero-offset {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 100px 8%;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 600px;
}

.hero-text-block {
    flex: 1;
    max-width: 580px;
}

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

.hero-subtext {
    font-size: 19px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 32px;
}

.cta-hero {
    display: inline-block;
    padding: 16px 40px;
    background: var(--accent-color);
    color: var(--bg-white);
    font-weight: 600;
    border-radius: 6px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.cta-hero:hover {
    background: #d63737;
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.hero-image-offset {
    flex: 1;
    transform: translateY(30px);
}

.hero-image-offset img {
    border-radius: 8px;
    box-shadow: var(--shadow-hover);
}

.intro-diagonal {
    padding: 120px 10%;
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.intro-diagonal::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -10%;
    width: 120%;
    height: 100px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    transform: rotate(-2deg);
}

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

.intro-content h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.intro-content p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
}

.statement-block {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 80px 7%;
    background: var(--bg-light);
}

.statement-left {
    flex: 1;
}

.statement-left img {
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.statement-right {
    flex: 1;
}

.statement-right h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.statement-right p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.7;
}

.services-preview {
    padding: 100px 6%;
    background: var(--bg-white);
}

.services-preview h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.services-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: var(--bg-white);
    padding: 32px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    flex: 1 1 calc(33.333% - 24px);
    min-width: 280px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

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

.service-card-large {
    flex: 1 1 calc(50% - 24px);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--bg-white);
}

.service-card-large h3,
.service-card-large p {
    color: var(--bg-white);
}

.service-card-featured {
    border: 2px solid var(--accent-color);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.service-card p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 16px;
    display: block;
}

.service-card-large .price {
    color: var(--bg-white);
}

.select-service {
    padding: 12px 24px;
    background: var(--accent-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.philosophy-wrapper {
    max-width: 1000px;
    margin: 0 auto 48px;
}

.philosophy-wrapper h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.philosophy-points {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 48px;
}

.point-item {
    flex: 1 1 calc(33.333% - 40px);
    min-width: 250px;
}

.point-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

.cta-inline {
    display: block;
    text-align: center;
    padding: 16px 40px;
    background: var(--accent-color);
    color: var(--bg-white);
    font-weight: 600;
    border-radius: 6px;
    max-width: 400px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.cta-inline:hover {
    background: #d63737;
    transform: translateY(-3px);
}

.case-insight {
    display: flex;
    align-items: stretch;
    gap: 0;
    padding: 0;
    background: var(--bg-white);
}

.case-insight img {
    width: 45%;
    object-fit: cover;
}

.case-text {
    width: 55%;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.case-text h3 {
    font-size: 30px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.case-text p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.7;
}

.testimonial-blocks {
    padding: 100px 8%;
    background: var(--bg-light);
}

.testimonial {
    background: var(--bg-white);
    padding: 40px 50px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin-bottom: 32px;
    max-width: 800px;
}

.testimonial-offset {
    margin-left: 10%;
}

.testimonial-offset-reverse {
    margin-left: auto;
    margin-right: 10%;
}

.testimonial p {
    font-size: 18px;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 14px;
    color: var(--text-light);
    font-style: normal;
    font-weight: 600;
}

.contact-section {
    padding: 100px 8%;
    background: var(--bg-white);
}

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

.contact-form-wrapper h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.contact-intro {
    text-align: center;
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 48px;
}

.contact-form {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
}

.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 select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 15px;
    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: var(--primary-color);
}

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

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

.final-statement {
    padding: 120px 8%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    text-align: center;
    color: var(--bg-white);
}

.final-statement h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--bg-white);
}

.final-statement p {
    font-size: 20px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-final {
    display: inline-block;
    padding: 16px 48px;
    background: var(--accent-color);
    color: var(--bg-white);
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-final:hover {
    background: #d63737;
    transform: translateY(-3px);
}

.footer {
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 60px 8% 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

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

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

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

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

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

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

.footer-disclaimer {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 32px;
}

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

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

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

.about-hero,
.services-hero,
.contact-hero {
    padding: 100px 8%;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    text-align: center;
}

.about-hero h1,
.services-hero h1,
.contact-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.about-lead,
.services-intro,
.contact-hero p {
    font-size: 20px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.about-story {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 100px 8%;
    background: var(--bg-white);
}

.story-image {
    flex: 1;
}

.story-image img {
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.story-text p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.approach-section {
    padding: 100px 8%;
    background: var(--bg-light);
}

.approach-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.approach-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.approach-item h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

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

.team-philosophy {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 100px 8%;
    background: var(--bg-white);
}

.philosophy-content {
    flex: 1;
}

.philosophy-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.philosophy-content p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.team-philosophy img {
    flex: 1;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

.values-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.values-list {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-block {
    flex: 1 1 calc(33.333% - 32px);
    min-width: 250px;
    background: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.value-block h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.value-block p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.cta-section,
.services-cta {
    padding: 100px 8%;
    background: var(--bg-white);
    text-align: center;
}

.cta-section h2,
.services-cta h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.cta-section p,
.services-cta p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: var(--accent-color);
    color: var(--bg-white);
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #d63737;
    transform: translateY(-3px);
}

.services-detailed {
    padding: 80px 6%;
    background: var(--bg-white);
}

.service-detail {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
    padding: 60px;
    background: var(--bg-light);
    border-radius: 12px;
}

.service-layout-2 {
    background: var(--bg-white);
    box-shadow: var(--shadow);
}

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.service-detail-content h3 {
    font-size: 20px;
    margin: 24px 0 12px;
    color: var(--primary-color);
}

.service-detail-content p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 24px;
}

.service-detail-content ul li {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 10px;
    padding-left: 24px;
    position: relative;
}

.service-detail-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.service-price-block {
    margin: 24px 0;
    padding: 20px;
    background: var(--bg-white);
    border-radius: 6px;
    border-left: 4px solid var(--accent-color);
}

.price-label {
    font-size: 14px;
    color: var(--text-light);
    display: block;
    margin-bottom: 4px;
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-color);
}

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

.service-detail-image img {
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.contact-details-section {
    display: flex;
    gap: 60px;
    padding: 80px 8%;
    background: var(--bg-white);
}

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

.contact-info-block h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--text-dark);
}

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

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

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

.contact-map-placeholder {
    flex: 1;
}

.contact-map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.contact-note {
    padding: 60px 8%;
    background: var(--bg-light);
}

.contact-note h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.contact-note p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 16px;
    max-width: 900px;
}

.thanks-section {
    padding: 120px 8%;
    background: var(--bg-white);
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.thanks-message {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.7;
}

.service-selected {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 24px;
}

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

.next-steps {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.btn-back-home {
    display: inline-block;
    padding: 16px 40px;
    background: var(--accent-color);
    color: var(--bg-white);
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-back-home:hover {
    background: #d63737;
    transform: translateY(-3px);
}

.legal-page {
    padding: 80px 8%;
    background: var(--bg-white);
    max-width: 1000px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 38px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.legal-intro {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 26px;
    margin: 40px 0 16px;
    color: var(--text-dark);
}

.legal-page h3 {
    font-size: 20px;
    margin: 24px 0 12px;
    color: var(--primary-color);
}

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

.legal-page ul {
    margin: 16px 0 24px 24px;
}

.legal-page ul li {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 8px;
}

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

.legal-page a:hover {
    color: var(--accent-color);
}

.gdpr-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.gdpr-table thead {
    background: var(--bg-light);
}

.gdpr-table th {
    padding: 12px;
    text-align: left;
    font-size: 16px;
    color: var(--text-dark);
    border-bottom: 2px solid var(--border-color);
}

.gdpr-table td {
    padding: 12px;
    font-size: 15px;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

@media (max-width: 768px) {
    .nav-asymmetric {
        flex-direction: column;
        gap: 16px;
        padding: 16px 5%;
    }

    .nav-right {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-offset {
        flex-direction: column;
        padding: 60px 5%;
    }

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

    .hero-image-offset {
        transform: translateY(0);
    }

    .statement-block,
    .about-story,
    .team-philosophy,
    .case-insight,
    .contact-details-section {
        flex-direction: column;
    }

    .case-insight img,
    .case-text {
        width: 100%;
    }

    .service-detail {
        flex-direction: column;
        padding: 40px 24px;
    }

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

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

    .philosophy-points,
    .approach-grid,
    .values-list {
        flex-direction: column;
    }

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

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

    .intro-content h2,
    .statement-right h3,
    .story-text h2 {
        font-size: 24px;
    }

    .services-preview h2,
    .philosophy-wrapper h2,
    .approach-section h2,
    .values-section h2 {
        font-size: 28px;
    }
}