:root {
    --primary-color: #2c3e50;
    --secondary-color: #34495e;
    --accent-color: #7f8c8d;
    --light-bg: #ecf0f1;
    --white: #ffffff;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --border-color: #bdc3c7;
    --shadow: rgba(0, 0, 0, 0.1);
}

* {
    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.7;
    color: var(--text-dark);
    background-color: var(--white);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: all 0.3s ease;
}

.floating-header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1400px;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px var(--shadow);
    z-index: 1000;
    padding: 1rem 2rem;
    display: flex;
    border-radius: 12px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.main-nav {
    display: flex;
    gap: 2rem;
}

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

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

.ad-disclosure {
    font-size: 0.75rem;
    color: var(--text-light);
    padding: 0.25rem 0.75rem;
    background-color: var(--light-bg);
    border-radius: 4px;
}

main {
    padding-top: 100px;
}

.hero-asymmetric {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 3rem 5%;
    background-color: var(--light-bg);
}

.hero-image-wrap {
    position: absolute;
    right: 0;
    top: 10%;
    width: 55%;
    height: 80%;
    z-index: 1;
}

.hero-image-wrap.offset-right {
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-image-wrap img {
    width: 100%;
    height: 100%;
    background-color: var(--light-bg);
}

.hero-text {
    position: relative;
    z-index: 2;
    max-width: 550px;
    padding: 3rem;
    background-color: var(--white);
    box-shadow: 0 8px 30px var(--shadow);
}

.hero-text.offset-left {
    margin-left: 5%;
    margin-top: -5%;
}

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

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

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

.cta-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow);
}

.intro-overlap {
    padding: 5rem 5%;
    position: relative;
    margin-top: -8rem;
}

.overlap-card {
    max-width: 700px;
    padding: 3rem;
    background-color: var(--white);
    box-shadow: 0 10px 40px var(--shadow);
}

.overlap-card.left-pull {
    margin-left: auto;
    margin-right: 10%;
}

.overlap-card h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.overlap-card p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.services-irregular {
    padding: 6rem 5%;
    background-color: var(--white);
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.service-grid-offset {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1300px;
    margin: 0 auto;
}

.service-card {
    display: flex;
    flex-direction: column;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.service-card.elevated {
    box-shadow: 0 6px 25px var(--shadow);
}

.service-card.offset-down {
    margin-left: 15%;
}

.service-card.offset-up {
    margin-right: 15%;
}

.service-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background-color: var(--light-bg);
}

.service-image img {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-size: 1.6rem;
    margin: 2rem 2rem 1rem;
    color: var(--primary-color);
}

.service-card p {
    margin: 0 2rem 1.5rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

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

.select-service {
    margin: 0 2rem 2rem;
    padding: 0.9rem 2rem;
    background-color: var(--secondary-color);
    color: var(--white);
    font-weight: 600;
    border-radius: 4px;
    width: calc(100% - 4rem);
}

.select-service:hover {
    background-color: var(--primary-color);
}

.trust-diagonal {
    padding: 6rem 5%;
    background-color: var(--light-bg);
    position: relative;
}

.diagonal-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.trust-text {
    flex: 1;
}

.trust-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.trust-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.trust-stats.offset-block {
    flex: 0 0 350px;
    background-color: var(--white);
    padding: 2.5rem;
    box-shadow: 0 8px 30px var(--shadow);
    transform: translateY(3rem);
}

.stat-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
}

.testimonials-staggered {
    padding: 6rem 5%;
    background-color: var(--white);
}

.testimonials-staggered h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: var(--primary-color);
}

.testimonial-wrap {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.testimonial {
    padding: 2.5rem;
    background-color: var(--light-bg);
    border-left: 4px solid var(--primary-color);
}

.testimonial.offset-left {
    margin-right: 20%;
}

.testimonial.offset-right {
    margin-left: 20%;
}

.testimonial p {
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial cite {
    display: block;
    font-style: normal;
    font-weight: 600;
    color: var(--text-light);
}

.form-section.asymmetric {
    padding: 6rem 5%;
    background-color: var(--light-bg);
    display: flex;
    gap: 4rem;
    align-items: center;
}

.form-container.floating {
    flex: 1;
    max-width: 600px;
    background-color: var(--white);
    padding: 3rem;
    box-shadow: 0 10px 40px var(--shadow);
    transform: translateX(5%);
}

.form-container h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.form-container p {
    margin-bottom: 2rem;
    color: var(--text-light);
}

.main-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

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

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

.btn-submit {
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 4px;
    margin-top: 1rem;
}

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

.form-image-accent {
    flex: 0 0 450px;
    height: 500px;
    overflow: hidden;
    background-color: var(--light-bg);
}

.form-image-accent img {
    width: 100%;
    height: 100%;
}

.disclaimer-section {
    padding: 3rem 5%;
    background-color: var(--white);
}

.disclaimer-text {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    background-color: var(--light-bg);
    border-left: 3px solid var(--accent-color);
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
}

.site-footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 4rem 5% 2rem;
}

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

.footer-col h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.98);
    color: var(--white);
    padding: 1.5rem 5%;
    z-index: 2000;
    box-shadow: 0 -4px 20px var(--shadow);
}

.cookie-banner.hidden {
    display: none;
}

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

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

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

.btn-primary {
    padding: 0.75rem 1.5rem;
    background-color: var(--white);
    color: var(--primary-color);
    font-weight: 600;
    border-radius: 4px;
}

.btn-primary:hover {
    background-color: var(--light-bg);
}

.btn-secondary {
    padding: 0.75rem 1.5rem;
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
    font-weight: 600;
    border-radius: 4px;
}

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

.about-hero.offset-layout {
    padding: 5rem 5%;
    display: flex;
    gap: 4rem;
    align-items: center;
    background-color: var(--light-bg);
}

.about-intro.pull-left {
    flex: 1;
    max-width: 600px;
    padding: 2rem;
}

.about-intro h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.about-intro p {
    font-size: 1.2rem;
    line-height: 1.8;
}

.about-image.angled-right {
    flex: 0 0 500px;
    height: 450px;
    overflow: hidden;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
    background-color: var(--border-color);
}

.about-image img {
    width: 100%;
    height: 100%;
}

.values-irregular {
    padding: 6rem 5%;
    background-color: var(--white);
}

.value-block {
    max-width: 800px;
    margin-bottom: 4rem;
    padding: 2.5rem;
}

.value-block.offset-up {
    margin-left: 10%;
}

.value-block.offset-down {
    margin-left: auto;
    margin-right: 10%;
}

.value-block.centered {
    margin-left: auto;
    margin-right: auto;
}

.value-block h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.value-block p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.team-staggered {
    padding: 6rem 5%;
    background-color: var(--light-bg);
}

.team-staggered h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.team-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
    font-size: 1.1rem;
    color: var(--text-light);
}

.team-grid-offset {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.team-member {
    padding: 2.5rem;
    background-color: var(--white);
    box-shadow: 0 6px 20px var(--shadow);
}

.team-member.elevated-left {
    margin-right: 20%;
}

.team-member.elevated-right {
    margin-left: 20%;
}

.team-member h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.team-member .role {
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.team-member p {
    line-height: 1.7;
}

.mission-diagonal {
    padding: 6rem 5%;
    background-color: var(--white);
}

.mission-content.angled-block {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
    background-color: var(--light-bg);
    transform: skewY(-2deg);
}

.mission-content.angled-block h2,
.mission-content.angled-block p {
    transform: skewY(2deg);
}

.mission-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.mission-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.services-header.asymmetric {
    padding: 5rem 5%;
    background-color: var(--light-bg);
}

.header-text.offset-position {
    max-width: 700px;
    margin-left: 10%;
    padding: 2rem;
}

.header-text h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.services-detailed {
    padding: 6rem 5%;
    background-color: var(--white);
}

.service-detail {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

.service-detail.left-emphasis {
    flex-direction: row;
}

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

.service-visual {
    flex: 0 0 500px;
    height: 400px;
    overflow: hidden;
    background-color: var(--light-bg);
    box-shadow: 0 8px 30px var(--shadow);
}

.service-visual img {
    width: 100%;
    height: 100%;
}

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.service-info p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    margin-bottom: 2rem;
}

.feature-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.7rem;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.pricing-info {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.price-label {
    font-weight: 600;
    color: var(--text-dark);
}

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

.additional-services.offset-block {
    padding: 5rem 5%;
    background-color: var(--light-bg);
}

.additional-services h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.additional-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
}

.additional-item {
    flex: 1;
    padding: 2rem;
    background-color: var(--white);
    box-shadow: 0 6px 20px var(--shadow);
}

.additional-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.additional-item p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.price-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.cta-services.centered-block {
    padding: 5rem 5%;
    text-align: center;
    background-color: var(--white);
}

.cta-services h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

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

.cta-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow);
}

.contact-header.offset-layout {
    padding: 5rem 5%;
    background-color: var(--light-bg);
}

.contact-intro {
    max-width: 700px;
    margin-left: 10%;
    padding: 2rem;
}

.contact-intro h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.contact-details.asymmetric-layout {
    padding: 6rem 5%;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    background-color: var(--white);
}

.contact-info-block.elevated-left {
    flex: 1;
    max-width: 600px;
    padding: 3rem;
    background-color: var(--light-bg);
    box-shadow: 0 8px 30px var(--shadow);
}

.contact-info-block h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.info-item {
    margin-bottom: 2rem;
}

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.info-item p {
    line-height: 1.7;
}

.contact-visual.offset-right {
    flex: 0 0 500px;
    height: 450px;
    overflow: hidden;
    background-color: var(--border-color);
    box-shadow: 0 8px 30px var(--shadow);
}

.contact-visual img {
    width: 100%;
    height: 100%;
}

.location-info.staggered {
    padding: 5rem 5%;
    background-color: var(--light-bg);
}

.location-info h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-align: center;
}

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

.location-text {
    padding: 2.5rem;
    background-color: var(--white);
    box-shadow: 0 6px 20px var(--shadow);
}

.location-text h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    color: var(--primary-color);
}

.location-text h3:first-child {
    margin-top: 0;
}

.location-text p {
    line-height: 1.8;
}

.contact-note.centered-block {
    padding: 4rem 5%;
    background-color: var(--white);
}

.note-text {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background-color: var(--light-bg);
    border-left: 3px solid var(--accent-color);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    text-align: center;
}

.thanks-container.centered-emphasis {
    padding: 6rem 5%;
    background-color: var(--light-bg);
    min-height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.thanks-content {
    max-width: 800px;
    padding: 4rem;
    background-color: var(--white);
    box-shadow: 0 10px 40px var(--shadow);
    text-align: center;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

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

.thanks-details {
    margin: 2rem 0;
    padding: 2rem;
    background-color: var(--light-bg);
}

.thanks-details p {
    margin-bottom: 1rem;
}

.selected-service {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.next-steps.offset-block {
    margin: 3rem 0;
    text-align: left;
    padding: 2rem;
}

.next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.steps-list {
    padding-left: 1.5rem;
}

.steps-list li {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
}

.legal-content {
    padding: 5rem 5%;
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.legal-content h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    color: var(--secondary-color);
}

.legal-content h4 {
    font-size: 1.2rem;
    margin: 1.5rem 0 0.75rem;
    color: var(--text-dark);
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

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

.legal-content ul li {
    margin-bottom: 0.7rem;
    line-height: 1.7;
}

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

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

.legal-update {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-light);
    font-style: italic;
}

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

    .hero-image-wrap {
        position: relative;
        width: 100%;
        height: 400px;
        clip-path: none;
    }

    .hero-text.offset-left {
        margin: -3rem 0 0 0;
        width: 90%;
    }

    .diagonal-content,
    .service-detail,
    .contact-details.asymmetric-layout,
    .about-hero.offset-layout,
    .form-section.asymmetric {
        flex-direction: column;
    }

    .service-visual,
    .contact-visual.offset-right,
    .about-image.angled-right {
        flex: 1;
        width: 100%;
        max-width: 100%;
    }

    .form-image-accent {
        flex: 1;
        width: 100%;
        height: 350px;
    }

    .service-card.offset-down,
    .service-card.offset-up,
    .testimonial.offset-left,
    .testimonial.offset-right,
    .team-member.elevated-left,
    .team-member.elevated-right {
        margin-left: 0;
        margin-right: 0;
    }

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

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav {
        flex-direction: column;
        gap: 0.5rem;
    }

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

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

    .cookie-content {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
    }
}