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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #fafafa;
}

.ad-disclosure {
    background-color: #2D5F3F;
    color: #ffffff;
    text-align: center;
    padding: 8px 20px;
    font-size: 0.85rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-asymmetric {
    background-color: #ffffff;
    padding: 30px 5%;
    position: relative;
}

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

.logo-section .brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2D5F3F;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.main-nav a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #2D5F3F;
}

.hero-offset {
    padding: 80px 5% 100px;
    background-color: #f5f5f5;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
}

.hero-text-block {
    flex: 1;
    padding-right: 40px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #4a4a4a;
}

.cta-primary {
    display: inline-block;
    background-color: #2D5F3F;
    color: #ffffff;
    padding: 18px 45px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-primary:hover {
    background-color: #1e4029;
    transform: translateY(-2px);
}

.hero-image-offset {
    flex: 1;
    position: relative;
    margin-top: -60px;
}

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

.intro-asymmetric {
    padding: 100px 5%;
    background-color: #ffffff;
}

.intro-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.intro-left {
    flex: 1.2;
}

.intro-left h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.intro-left p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a4a4a;
}

.intro-right {
    flex: 1;
    position: relative;
    margin-left: -40px;
}

.intro-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.services-preview {
    padding: 120px 5%;
    background-color: #f9f9f9;
}

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

.section-label {
    display: inline-block;
    background-color: #2D5F3F;
    color: #ffffff;
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border-radius: 20px;
}

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

.services-grid-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

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

.card-large {
    flex-basis: calc(60% - 15px);
    display: flex;
    flex-direction: row;
}

.card-large .card-visual {
    flex: 1;
    background-color: #e8e8e8;
}

.card-large .card-text {
    flex: 1;
    padding: 40px;
}

.card-offset {
    flex-basis: calc(40% - 15px);
    margin-top: 40px;
}

.card-elevated {
    flex-basis: calc(35% - 15px);
    margin-top: -30px;
}

.card-wide {
    flex-basis: calc(65% - 15px);
}

.card-compact {
    flex-basis: calc(48% - 15px);
}

.card-standard {
    flex-basis: calc(52% - 15px);
    margin-top: 20px;
}

.card-visual {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #e8e8e8;
}

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

.card-text {
    padding: 30px;
}

.card-text h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 600;
}

.card-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.service-price {
    display: inline-block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #2D5F3F;
    margin-top: 10px;
}

.testimonials-offset {
    padding: 100px 5%;
    background-color: #2D5F3F;
    color: #ffffff;
    position: relative;
}

.testimonials-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 80px;
}

.testimonials-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
    font-weight: 700;
}

.testimonials-layout {
    display: flex;
    gap: 50px;
}

.testimonial-card {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid #ffffff;
}

.testimonial-card:first-child {
    margin-top: 40px;
}

.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-card cite {
    font-style: normal;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-section {
    padding: 120px 5%;
    background-color: #f5f5f5;
}

.form-container-asymmetric {
    max-width: 1000px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
}

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

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.form-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: flex;
    gap: 25px;
}

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

.form-group label {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    font-size: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    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: #2D5F3F;
}

.btn-submit {
    background-color: #2D5F3F;
    color: #ffffff;
    padding: 18px 45px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
}

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

.disclaimer-section {
    padding: 60px 5%;
    background-color: #fffbe6;
    border-top: 3px solid #ffd966;
}

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

.disclaimer-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.footer-asymmetric {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 80px 5% 30px;
}

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

.footer-brand {
    flex: 1.5;
}

.footer-brand h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.footer-brand p {
    font-size: 1rem;
    line-height: 1.7;
    color: #b0b0b0;
}

.footer-nav,
.footer-legal {
    flex: 1;
}

.footer-nav h4,
.footer-legal h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-nav ul,
.footer-legal ul {
    list-style: none;
}

.footer-nav ul li,
.footer-legal ul li {
    margin-bottom: 12px;
}

.footer-nav ul li a,
.footer-legal ul li a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-nav ul li a:hover,
.footer-legal ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #333333;
    text-align: center;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 25px 5%;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

.cookie-content {
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

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

.cookie-actions {
    display: flex;
    gap: 15px;
}

.cookie-accept,
.cookie-reject {
    padding: 12px 30px;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cookie-accept {
    background-color: #2D5F3F;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #1e4029;
    transform: translateY(-2px);
}

.cookie-reject {
    background-color: #666666;
    color: #ffffff;
}

.cookie-reject:hover {
    background-color: #4a4a4a;
    transform: translateY(-2px);
}

.thanks-section {
    padding: 120px 5%;
    background-color: #f5f5f5;
    min-height: 60vh;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background-color: #ffffff;
    padding: 80px 60px;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

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

.thanks-container h1 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.thanks-message {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 30px;
}

.selected-service {
    margin: 30px 0;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 4px;
    font-size: 1rem;
}

.btn-back {
    display: inline-block;
    background-color: #2D5F3F;
    color: #ffffff;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 20px;
}

.btn-back:hover {
    background-color: #1e4029;
    transform: translateY(-2px);
}

.about-hero {
    padding: 100px 5%;
    background-color: #2D5F3F;
    color: #ffffff;
    text-align: center;
}

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

.about-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.about-hero-content p {
    font-size: 1.3rem;
    line-height: 1.7;
}

.about-story {
    padding: 100px 5%;
    background-color: #ffffff;
}

.story-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.story-image {
    flex: 1;
    position: relative;
    margin-right: -40px;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.story-text {
    flex: 1.2;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.team-section {
    padding: 100px 5%;
    background-color: #f9f9f9;
}

.team-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 80px;
    color: #1a1a1a;
}

.team-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    justify-content: center;
}

.team-member {
    flex: 1;
    max-width: 380px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.member-photo {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background-color: #e8e8e8;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-member h3 {
    font-size: 1.5rem;
    margin: 25px 25px 10px;
    color: #1a1a1a;
}

.member-role {
    font-size: 1rem;
    font-weight: 600;
    color: #2D5F3F;
    margin: 0 25px 15px;
}

.team-member p:last-child {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin: 0 25px 25px;
}

.values-section {
    padding: 100px 5%;
    background-color: #ffffff;
}

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

.values-wrapper h2 {
    font-size: 2.8rem;
    margin-bottom: 60px;
    text-align: center;
    color: #1a1a1a;
}

.values-list {
    display: flex;
    gap: 50px;
}

.value-item {
    flex: 1;
    padding: 40px;
    background-color: #f9f9f9;
    border-radius: 8px;
    border-left: 5px solid #2D5F3F;
}

.value-item h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.services-page-hero {
    padding: 100px 5%;
    background-color: #2D5F3F;
    color: #ffffff;
    text-align: center;
}

.services-page-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.services-page-hero p {
    font-size: 1.3rem;
    line-height: 1.7;
}

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

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

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

.service-content {
    flex: 1.2;
}

.service-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-price-large {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2D5F3F;
    margin-bottom: 25px;
}

.service-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    margin-top: 25px;
}

.service-features li {
    font-size: 1rem;
    line-height: 1.8;
    color: #4a4a4a;
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2D5F3F;
    font-weight: 700;
    font-size: 1.2rem;
}

.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.services-cta {
    padding: 80px 5%;
    background-color: #f5f5f5;
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 40px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.cta-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 30px;
}

.btn-cta {
    display: inline-block;
    background-color: #2D5F3F;
    color: #ffffff;
    padding: 18px 45px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-cta:hover {
    background-color: #1e4029;
    transform: translateY(-2px);
}

.contact-page-hero {
    padding: 100px 5%;
    background-color: #2D5F3F;
    color: #ffffff;
    text-align: center;
}

.contact-page-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-page-hero p {
    font-size: 1.3rem;
    line-height: 1.7;
}

.contact-info-section {
    padding: 100px 5%;
    background-color: #ffffff;
}

.contact-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.contact-details {
    flex: 1;
}

.contact-block h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #1a1a1a;
}

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

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

.contact-item p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a4a4a;
}

.email-display {
    color: #4a4a4a;
    pointer-events: none;
}

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

.contact-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.additional-info-section {
    padding: 80px 5%;
    background-color: #f9f9f9;
}

.info-container {
    max-width: 1000px;
    margin: 0 auto;
}

.info-container h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.info-container p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.legal-page {
    padding: 80px 5%;
    background-color: #ffffff;
    min-height: 70vh;
}

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

.legal-container h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.legal-date {
    font-size: 0.95rem;
    color: #666666;
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2D5F3F;
    font-weight: 600;
}

.legal-container p {
    font-size: 1rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.legal-container ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-container ul li {
    font-size: 1rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 10px;
}

.legal-container a {
    color: #2D5F3F;
    text-decoration: underline;
}

.legal-container a:hover {
    color: #1e4029;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 0.95rem;
}

.cookies-table thead tr {
    background-color: #2D5F3F;
    color: #ffffff;
}

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

.cookies-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

@media (max-width: 1200px) {
    .hero-title {
        font-size: 2.5rem;
    }

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

    .card-large,
    .card-offset,
    .card-elevated,
    .card-wide,
    .card-compact,
    .card-standard {
        flex-basis: 100%;
        margin-top: 0;
    }

    .card-large {
        flex-direction: column;
    }

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

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

    .team-grid {
        flex-direction: column;
        align-items: center;
    }
}

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

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

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

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

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

    .story-image {
        margin-right: 0;
    }

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

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

    .contact-image {
        margin-top: 0;
    }

    .form-row {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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

    .main-nav {
        flex-direction: column;
        gap: 20px;
    }

    .nav-split {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 2rem;
    }

    .about-hero-content h1,
    .services-page-hero h1,
    .contact-page-hero h1 {
        font-size: 2.2rem;
    }

    .thanks-container {
        padding: 60px 30px;
    }

    .thanks-container h1 {
        font-size: 2rem;
    }

    .form-container-asymmetric {
        padding: 40px 30px;
    }
}