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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.ad-disclosure {
    background-color: #34495e;
    color: #ecf0f1;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: #ffffff;
    border-bottom: 1px solid #ecf0f1;
    position: sticky;
    top: 32px;
    z-index: 999;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.nav-links {
    display: flex;
    gap: 35px;
}

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

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

.hero-offset {
    display: flex;
    min-height: 600px;
    padding: 0;
    margin-bottom: 80px;
}

.hero-content-left {
    flex: 1;
    padding: 100px 8% 100px 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

.hero-content-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #2c3e50;
}

.hero-content-left p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #555;
}

.hero-image-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.hero-image-right img {
    width: 100%;
    height: 100%;
    display: block;
}

.cta-primary {
    display: inline-block;
    padding: 15px 35px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
    align-self: flex-start;
}

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

.intro-asymmetric {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 0 5%;
    margin-bottom: 100px;
    position: relative;
}

.intro-block-overlap {
    flex: 1.2;
    padding: 50px;
    background-color: #ffffff;
    border-left: 5px solid #3498db;
    position: relative;
    z-index: 2;
    margin-left: 40px;
}

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

.intro-block-overlap p {
    font-size: 17px;
    color: #555;
}

.intro-image-offset {
    flex: 1;
    height: 400px;
    position: relative;
    overflow: hidden;
    margin-top: -40px;
}

.intro-image-offset img {
    width: 100%;
    height: 100%;
    display: block;
}

.services-irregular {
    padding: 80px 5%;
    background-color: #fafbfc;
}

.services-title-offset {
    font-size: 42px;
    margin-bottom: 60px;
    color: #2c3e50;
    padding-left: 80px;
}

.service-card {
    display: flex;
    margin-bottom: 50px;
    gap: 40px;
    align-items: center;
}

.service-card.card-left {
    flex-direction: row;
    padding-left: 0;
}

.service-card.card-right {
    flex-direction: row-reverse;
    padding-right: 0;
}

.service-card.card-full {
    flex-direction: row;
    padding-left: 10%;
}

.service-image {
    flex: 1;
    height: 300px;
    overflow: hidden;
    position: relative;
}

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

.service-info {
    flex: 1.3;
    padding: 30px;
}

.service-info h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-info p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #555;
}

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

.select-service-btn {
    padding: 12px 28px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.cta-diagonal {
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    padding: 100px 5%;
    margin: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-content {
    max-width: 700px;
    margin-left: 10%;
}

.cta-content h2 {
    font-size: 40px;
    color: #ffffff;
    margin-bottom: 20px;
}

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

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

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

.benefits-stagger {
    padding: 80px 5%;
    background-color: #ffffff;
}

.benefits-stagger h2 {
    font-size: 40px;
    margin-bottom: 60px;
    text-align: center;
    color: #2c3e50;
}

.benefit-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.benefit-item {
    padding: 40px;
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
}

.benefit-item.item-offset-1 {
    margin-left: 5%;
    margin-right: 15%;
}

.benefit-item.item-offset-2 {
    margin-left: 20%;
    margin-right: 5%;
}

.benefit-item.item-offset-3 {
    margin-left: 10%;
    margin-right: 10%;
}

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

.benefit-item p {
    font-size: 16px;
    color: #555;
}

.form-asymmetric {
    display: flex;
    padding: 80px 5%;
    gap: 60px;
    background-color: #fafbfc;
}

.form-wrapper {
    flex: 1.2;
    padding-right: 40px;
}

.form-wrapper h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.form-wrapper p {
    font-size: 16px;
    margin-bottom: 30px;
    color: #555;
}

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

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

.form-group label {
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    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: #3498db;
}

.submit-btn {
    padding: 15px 35px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start;
}

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

.form-image-offset {
    flex: 1;
    height: 500px;
    overflow: hidden;
    position: relative;
    margin-top: 60px;
}

.form-image-offset img {
    width: 100%;
    height: 100%;
    display: block;
}

.disclaimer-block {
    padding: 40px 5%;
    background-color: #ecf0f1;
    margin: 60px 0;
}

.disclaimer-block p {
    font-size: 14px;
    color: #555;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.footer-asymmetric {
    display: flex;
    justify-content: space-between;
    padding: 60px 5%;
    background-color: #2c3e50;
    color: #ecf0f1;
    gap: 40px;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-column p,
.footer-column a {
    font-size: 14px;
    color: #bdc3c7;
    line-height: 1.8;
}

.footer-column a {
    text-decoration: none;
    display: block;
    transition: color 0.3s;
}

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

.footer-col-1 {
    flex: 1.5;
}

.footer-col-2,
.footer-col-3 {
    flex: 1.2;
}

.footer-col-4 {
    flex: 1;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 20px;
    z-index: 2000;
    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: 30px;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
}

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

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

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

.cookie-accept {
    background-color: #27ae60;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #229954;
}

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

.cookie-reject:hover {
    background-color: #7f8c8d;
}

.page-hero-small {
    padding: 80px 5%;
    background-color: #f8f9fa;
    text-align: center;
}

.page-hero-small h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.page-hero-small p {
    font-size: 18px;
    color: #555;
}

.about-story-offset {
    display: flex;
    gap: 50px;
    padding: 80px 5%;
    align-items: center;
}

.story-text {
    flex: 1.3;
    padding-right: 40px;
}

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

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

.story-image {
    flex: 1;
    height: 450px;
    overflow: hidden;
    position: relative;
}

.story-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.values-irregular {
    padding: 80px 5%;
    background-color: #fafbfc;
}

.values-irregular h2 {
    font-size: 40px;
    margin-bottom: 50px;
    text-align: center;
    color: #2c3e50;
}

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

.value-card {
    padding: 40px;
    background-color: #ffffff;
    border-top: 4px solid #3498db;
}

.value-card.value-pos-1 {
    margin-left: 0;
    margin-right: 20%;
}

.value-card.value-pos-2 {
    margin-left: 25%;
    margin-right: 5%;
}

.value-card.value-pos-3 {
    margin-left: 10%;
    margin-right: 15%;
}

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

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

.team-asymmetric {
    padding: 80px 5%;
    background-color: #ffffff;
}

.team-asymmetric h2 {
    font-size: 40px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.team-intro {
    font-size: 17px;
    margin-bottom: 50px;
    max-width: 800px;
    color: #555;
}

.team-highlight {
    display: flex;
    gap: 50px;
    align-items: center;
}

.team-image {
    flex: 1;
    height: 400px;
    overflow: hidden;
    position: relative;
}

.team-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.team-text {
    flex: 1.2;
    padding-left: 30px;
}

.team-text p {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
}

.cta-simple {
    padding: 80px 5%;
    background-color: #f8f9fa;
    text-align: center;
}

.cta-simple h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.cta-simple p {
    font-size: 17px;
    margin-bottom: 30px;
    color: #555;
}

.cta-button {
    display: inline-block;
    padding: 15px 35px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #2980b9;
}

.services-detailed {
    padding: 80px 5%;
}

.service-detail-card {
    display: flex;
    gap: 50px;
    margin-bottom: 80px;
    align-items: center;
}

.service-detail-card.card-layout-1 {
    flex-direction: row;
}

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

.service-detail-image {
    flex: 1;
    height: 350px;
    overflow: hidden;
    position: relative;
}

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

.service-detail-content {
    flex: 1.4;
    padding: 30px;
}

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

.service-detail-content p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #555;
}

.service-includes {
    list-style: none;
    margin-bottom: 25px;
}

.service-includes li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.service-price-large {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 25px;
}

.service-cta {
    display: inline-block;
    padding: 12px 28px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.service-cta:hover {
    background-color: #2980b9;
}

.contact-asymmetric {
    display: flex;
    gap: 60px;
    padding: 80px 5%;
    align-items: flex-start;
}

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

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

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

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

.contact-image-offset {
    flex: 1;
    height: 450px;
    overflow: hidden;
    position: relative;
    margin-top: -50px;
}

.contact-image-offset img {
    width: 100%;
    height: 100%;
    display: block;
}

.contact-cta-section {
    padding: 80px 5%;
    background-color: #f8f9fa;
    text-align: center;
}

.contact-cta-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.contact-cta-section p {
    font-size: 17px;
    margin-bottom: 30px;
    color: #555;
}

.thanks-section {
    padding: 120px 5%;
    text-align: center;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.thanks-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
}

.thanks-service-info {
    padding: 20px;
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
    margin-bottom: 30px;
    font-size: 16px;
    color: #2c3e50;
}

.legal-page {
    padding: 60px 5%;
    max-width: 1000px;
    margin: 0 auto;
}

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

.legal-content h2 {
    font-size: 26px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.legal-content p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #555;
    line-height: 1.8;
}

.legal-content ul {
    margin-bottom: 20px;
    margin-left: 30px;
}

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

.legal-content a {
    color: #3498db;
    text-decoration: underline;
}

.legal-updated {
    margin-top: 40px;
    font-style: italic;
    color: #7f8c8d;
}

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

    .hero-offset,
    .intro-asymmetric,
    .service-card,
    .form-asymmetric,
    .about-story-offset,
    .team-highlight,
    .service-detail-card,
    .contact-asymmetric {
        flex-direction: column;
    }

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

    .benefit-item.item-offset-1,
    .benefit-item.item-offset-2,
    .benefit-item.item-offset-3,
    .value-card.value-pos-1,
    .value-card.value-pos-2,
    .value-card.value-pos-3 {
        margin-left: 0;
        margin-right: 0;
    }

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