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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    display: none;
}

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

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

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

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

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

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

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

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

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

.header-asymmetric {
    background-color: #ffffff;
    padding: 20px 40px;
    border-bottom: 1px solid #ecf0f1;
}

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

.brand-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.ad-label {
    font-size: 11px;
    color: #95a5a6;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-offset {
    display: flex;
    gap: 35px;
    align-items: center;
}

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

.nav-offset a:hover {
    color: #e74c3c;
}

.hero-asymmetric {
    min-height: 85vh;
    background-color: #fafafa;
    padding: 80px 40px;
}

.hero-content-offset {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.hero-text-block {
    flex: 1;
    max-width: 560px;
    padding-right: 40px;
}

.hero-text-block h1 {
    font-size: 52px;
    line-height: 1.15;
    margin-bottom: 28px;
    color: #2c3e50;
    font-weight: 800;
}

.hero-intro {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 36px;
    color: #7f8c8d;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #e74c3c;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.cta-primary:hover {
    background-color: #c0392b;
}

.hero-image-overlap {
    flex: 1;
    position: relative;
    margin-top: -40px;
}

.hero-image-overlap img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

.intro-diagonal {
    padding: 100px 40px;
    background-color: #ffffff;
}

.diagonal-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
}

.intro-text-narrow {
    flex: 2;
    max-width: 680px;
}

.intro-text-narrow h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #2c3e50;
    line-height: 1.25;
}

.intro-text-narrow p {
    font-size: 18px;
    margin-bottom: 24px;
    color: #555;
}

.intro-image-small {
    flex: 1;
    margin-top: 60px;
}

.intro-image-small img {
    width: 100%;
    border-radius: 4px;
    object-fit: cover;
}

.services-stacked {
    padding: 100px 40px;
    background-color: #f8f9fa;
}

.services-header-offset {
    max-width: 1400px;
    margin: 0 auto 60px;
    padding-left: 120px;
}

.services-header-offset h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.services-intro {
    font-size: 20px;
    color: #7f8c8d;
}

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

.service-card {
    background-color: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.card-large {
    flex: 1 1 calc(60% - 15px);
    min-width: 400px;
}

.card-small {
    flex: 1 1 calc(40% - 15px);
    min-width: 320px;
    flex-direction: row;
}

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

.card-medium {
    flex: 1 1 calc(50% - 15px);
    min-width: 360px;
    flex-direction: row-reverse;
}

.card-compact {
    flex: 1 1 calc(50% - 15px);
    min-width: 360px;
}

.card-elevated {
    flex: 1 1 calc(60% - 15px);
    min-width: 400px;
    flex-direction: row-reverse;
}

.card-image {
    background-color: #ecf0f1;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 250px;
}

.card-small .card-image,
.card-medium .card-image,
.card-wide .card-image,
.card-elevated .card-image {
    flex: 1;
    min-width: 200px;
}

.card-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-small .card-content,
.card-medium .card-content,
.card-wide .card-content,
.card-elevated .card-content {
    flex: 1;
}

.card-content h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.card-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 16px;
}

.price {
    font-size: 22px;
    font-weight: 700;
    color: #e74c3c;
    margin-top: auto;
    margin-bottom: 20px;
}

.select-service {
    padding: 12px 28px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.select-service:hover {
    background-color: #34495e;
}

.testimonial-offset {
    padding: 80px 40px;
    background-color: #2c3e50;
    color: #ffffff;
}

.testimonial-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.testimonial-large {
    flex: 2;
    font-size: 26px;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-small {
    flex: 1;
    font-size: 18px;
    line-height: 1.7;
    font-style: italic;
    margin-top: 40px;
}

cite {
    display: block;
    margin-top: 20px;
    font-style: normal;
    font-size: 14px;
    color: #95a5a6;
}

.form-section-diagonal {
    padding: 100px 40px;
    background-color: #ffffff;
}

.form-container-offset {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 80px;
}

.form-text-block {
    flex: 1;
}

.form-text-block h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.form-text-block p {
    font-size: 18px;
    color: #555;
}

.contact-form-asymmetric {
    flex: 1.2;
}

.selected-service-box {
    background-color: #e8f5e9;
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 24px;
    border-left: 4px solid #27ae60;
}

.selected-service-box p {
    margin: 4px 0;
    font-size: 15px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}

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

.btn-submit {
    padding: 14px 36px;
    background-color: #e74c3c;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.why-section-overlap {
    padding: 100px 40px;
    background-color: #fafafa;
}

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

.why-content h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #2c3e50;
    text-align: center;
}

.why-columns {
    display: flex;
    gap: 50px;
}

.why-col {
    flex: 1;
    font-size: 18px;
    line-height: 1.7;
    color: #555;
}

.footer-asymmetric {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px 40px 20px;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.footer-brand p {
    color: #95a5a6;
}

.footer-links h4 {
    font-size: 16px;
    margin-bottom: 16px;
    font-weight: 600;
}

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

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

.footer-links ul li a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #e74c3c;
}

.footer-contact h4 {
    font-size: 16px;
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-contact p {
    color: #ecf0f1;
    margin-bottom: 10px;
}

.email-text {
    color: #ecf0f1;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 24px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    font-size: 13px;
    line-height: 1.6;
    color: #bdc3c7;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #95a5a6;
    font-size: 14px;
}

.about-hero-offset {
    padding: 100px 40px 60px;
    background-color: #fafafa;
}

.about-intro-block {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-intro-block h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.lead-text {
    font-size: 22px;
    line-height: 1.6;
    color: #7f8c8d;
}

.about-story-asymmetric {
    padding: 80px 40px;
    background-color: #ffffff;
}

.story-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 70px;
    align-items: center;
}

.story-image-offset {
    flex: 1;
    margin-top: -60px;
}

.story-image-offset img {
    width: 100%;
    border-radius: 6px;
    object-fit: cover;
}

.story-text-block {
    flex: 1.2;
}

.story-text-block h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.story-text-block p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #555;
}

.values-diagonal {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.values-header {
    max-width: 1200px;
    margin: 0 auto 50px;
    text-align: center;
}

.values-header h2 {
    font-size: 40px;
    color: #2c3e50;
}

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

.value-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 6px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}

.value-card:nth-child(odd) {
    margin-top: 30px;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.value-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.team-overlap {
    padding: 80px 40px;
    background-color: #ffffff;
}

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

.team-container h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.team-intro {
    font-size: 19px;
    margin-bottom: 50px;
    color: #7f8c8d;
}

.team-members-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.member-block {
    padding: 30px;
    background-color: #fafafa;
    border-left: 4px solid #e74c3c;
}

.member-block:nth-child(even) {
    margin-left: 80px;
}

.member-block h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.role {
    font-size: 15px;
    color: #e74c3c;
    font-weight: 600;
    margin-bottom: 16px;
    display: block;
}

.member-block p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.approach-section {
    padding: 80px 40px;
    background-color: #2c3e50;
    color: #ffffff;
}

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

.approach-content h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
}

.approach-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.approach-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.approach-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #ecf0f1;
}

.approach-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #bdc3c7;
}

.cta-offset-about {
    padding: 80px 40px;
    background-color: #fafafa;
}

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

.cta-content-block h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.cta-content-block p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #7f8c8d;
}

.cta-secondary {
    display: inline-block;
    padding: 14px 36px;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.cta-secondary:hover {
    background-color: #34495e;
}

.services-hero {
    padding: 80px 40px;
    background-color: #2c3e50;
    color: #ffffff;
    text-align: center;
}

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

.services-hero-content h1 {
    font-size: 46px;
    margin-bottom: 20px;
}

.services-lead {
    font-size: 20px;
    color: #ecf0f1;
}

.services-detailed {
    padding: 80px 40px;
    background-color: #ffffff;
}

.service-detail-item {
    max-width: 1200px;
    margin: 0 auto 80px;
    display: flex;
    gap: 60px;
    align-items: center;
}

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

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-description {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: #555;
}

.service-features {
    list-style-position: inside;
    margin-bottom: 24px;
}

.service-features li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #555;
    padding-left: 8px;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 24px;
}

.service-detail-image {
    flex: 1;
    background-color: #ecf0f1;
    border-radius: 6px;
    overflow: hidden;
}

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

.service-cta-section {
    padding: 80px 40px;
    background-color: #fafafa;
}

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

.service-cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #7f8c8d;
}

.contact-hero {
    padding: 80px 40px;
    background-color: #2c3e50;
    color: #ffffff;
    text-align: center;
}

.contact-hero-content h1 {
    font-size: 44px;
    margin-bottom: 16px;
}

.contact-lead {
    font-size: 20px;
    color: #ecf0f1;
}

.contact-info-section {
    padding: 80px 40px;
    background-color: #ffffff;
}

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
}

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

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 600;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

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

.map-box {
    background-color: #ecf0f1;
    padding: 40px;
    border-radius: 6px;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-box p {
    font-size: 16px;
    line-height: 1.7;
    color: #7f8c8d;
    text-align: center;
}

.contact-approach {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

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

.approach-content h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: #2c3e50;
}

.approach-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.step-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 6px;
}

.step-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 16px;
}

.step-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.step-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.thanks-section {
    padding: 100px 40px;
    background-color: #ffffff;
    min-height: 70vh;
}

.thanks-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.thanks-content {
    flex: 1.5;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #27ae60;
}

.thanks-message {
    font-size: 19px;
    margin-bottom: 30px;
    color: #555;
}

.service-confirmation {
    background-color: #e8f5e9;
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 30px;
    border-left: 4px solid #27ae60;
}

.service-confirmation p {
    margin: 4px 0;
    font-size: 16px;
    color: #2c3e50;
}

.next-steps {
    margin-bottom: 40px;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.steps-list {
    list-style-position: inside;
}

.steps-list li {
    font-size: 16px;
    margin-bottom: 12px;
    color: #555;
    padding-left: 8px;
}

.thanks-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.thanks-cta p {
    flex: 1 1 100%;
    font-size: 16px;
    margin-bottom: 10px;
    color: #7f8c8d;
}

.cta-tertiary {
    display: inline-block;
    padding: 12px 28px;
    background-color: transparent;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #2c3e50;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-tertiary:hover {
    background-color: #2c3e50;
    color: #ffffff;
}

.thanks-image {
    flex: 1;
}

.thanks-image img {
    width: 100%;
    border-radius: 6px;
    object-fit: cover;
}

.legal-content {
    padding: 80px 40px;
    background-color: #ffffff;
}

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

.legal-container h1 {
    font-size: 40px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.legal-updated {
    font-size: 14px;
    color: #95a5a6;
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.legal-container p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #555;
}

.legal-container ul {
    margin-bottom: 20px;
    padding-left: 40px;
}

.legal-container ul li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #555;
}

.legal-container a {
    color: #e74c3c;
    text-decoration: none;
}

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

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

.cookies-table th,
.cookies-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ecf0f1;
}

.cookies-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.cookies-table td {
    color: #555;
}

@media (max-width: 1024px) {
    .hero-content-offset,
    .diagonal-container,
    .story-container,
    .service-detail-item,
    .contact-grid,
    .thanks-container {
        flex-direction: column;
    }

    .hero-image-overlap {
        margin-top: 0;
    }

    .intro-image-small {
        margin-top: 0;
    }

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

    .member-block:nth-child(even) {
        margin-left: 0;
    }

    .testimonial-container {
        flex-direction: column;
    }

    .testimonial-small {
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .nav-offset {
        flex-wrap: wrap;
        gap: 20px;
    }

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

    .hero-intro {
        font-size: 17px;
    }

    .service-cards-irregular {
        flex-direction: column;
    }

    .card-small,
    .card-wide,
    .card-medium,
    .card-elevated {
        flex-direction: column;
    }

    .why-columns {
        flex-direction: column;
    }

    .form-container-offset {
        flex-direction: column;
        gap: 40px;
    }

    .footer-grid {
        flex-direction: column;
        gap: 30px;
    }
}
