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

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

.ad-disclosure {
    background-color: #f4f4f4;
    color: #666;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    border-bottom: 1px solid #ddd;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    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;
    margin: 0;
}

.cookie-content a {
    color: #ffd700;
}

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

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

#cookie-accept {
    background-color: #4CAF50;
    color: white;
}

#cookie-accept:hover {
    background-color: #45a049;
}

#cookie-reject {
    background-color: #666;
    color: white;
}

#cookie-reject:hover {
    background-color: #555;
}

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 8%;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-brand {
    font-size: 28px;
    font-weight: 700;
    color: #2c2c2c;
    letter-spacing: -0.5px;
}

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

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

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

.hero-asymmetric {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 0 8%;
    overflow: hidden;
    margin-bottom: 100px;
}

.hero-image-offset {
    position: absolute;
    right: 0;
    top: 50px;
    width: 55%;
    height: 500px;
    background-color: #e8e8e8;
    overflow: hidden;
}

.hero-image-offset img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text-float {
    position: relative;
    z-index: 10;
    max-width: 500px;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 50px;
    margin-left: 0;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.hero-text-float h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.hero-text-float p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
}

.cta-primary {
    display: inline-block;
    padding: 15px 35px;
    background-color: #2c2c2c;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.intro-offset {
    display: flex;
    padding: 80px 8%;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.intro-block-left {
    flex: 1;
    padding-left: 80px;
}

.intro-block-left h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c2c2c;
}

.intro-block-left p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

.intro-image-right {
    flex: 1;
    background-color: #e8e8e8;
    height: 400px;
    overflow: hidden;
}

.intro-image-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-asymmetric {
    padding: 100px 8%;
    background-color: #fff;
}

.section-header-offset {
    max-width: 600px;
    margin-bottom: 60px;
    margin-left: 120px;
}

.section-header-offset h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.section-header-offset p {
    font-size: 18px;
    color: #666;
}

.services-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    position: relative;
}

.service-card {
    background-color: #fafafa;
    border: 1px solid #e0e0e0;
    width: calc(33.333% - 30px);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    overflow: hidden;
}

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

.service-card.offset-top {
    margin-top: -30px;
}

.service-card.offset-bottom {
    margin-top: 50px;
}

.service-card.offset-center {
    margin-top: 10px;
}

.service-card.offset-right {
    margin-left: 40px;
}

.service-card.offset-left {
    margin-right: 40px;
}

.service-card.selected {
    border: 3px solid #d4a574;
    box-shadow: 0 8px 30px rgba(212, 165, 116, 0.3);
}

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

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

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

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #d4a574;
    margin-bottom: 20px;
}

.btn-select {
    width: 100%;
    padding: 12px;
    background-color: #2c2c2c;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-select:hover {
    background-color: #d4a574;
}

.form-section-diagonal {
    position: relative;
    padding: 120px 8%;
    background-color: #f5f5f5;
    display: flex;
    gap: 80px;
    align-items: center;
}

.form-container-offset {
    flex: 1;
    max-width: 600px;
    background-color: #fff;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    margin-top: -60px;
}

.form-container-offset h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.form-intro {
    font-size: 16px;
    color: #666;
    margin-bottom: 35px;
}

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 15px;
    background-color: #2c2c2c;
    color: #fff;
    border: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.form-image-float {
    flex: 1;
    height: 500px;
    background-color: #e8e8e8;
    overflow: hidden;
    margin-top: 80px;
}

.form-image-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-offset {
    padding: 100px 8%;
    display: flex;
    gap: 60px;
    align-items: center;
    background-color: #2c2c2c;
}

.testimonial-content {
    flex: 1;
    padding: 50px;
}

.testimonial-content blockquote {
    border-left: none;
}

.testimonial-content p {
    font-size: 28px;
    line-height: 1.6;
    color: #fff;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-content cite {
    font-size: 16px;
    color: #d4a574;
    font-style: normal;
}

.testimonial-image {
    flex: 1;
    height: 400px;
    background-color: #e8e8e8;
    overflow: hidden;
}

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

.footer-asymmetric {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 8% 30px;
}

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

.footer-col h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

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

.footer-col p {
    color: #aaa;
}

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

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

.footer-col ul li a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #d4a574;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
}

.disclaimer {
    font-size: 13px;
    color: #888;
    margin-bottom: 15px;
    line-height: 1.6;
}

.footer-bottom p {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.about-header-asymmetric {
    padding: 80px 8%;
    background-color: #2c2c2c;
    color: #fff;
}

.about-header-content {
    max-width: 700px;
    margin-left: 120px;
}

.about-header-content h1 {
    font-size: 52px;
    margin-bottom: 25px;
}

.about-header-content p {
    font-size: 20px;
    line-height: 1.7;
}

.about-story-offset {
    padding: 100px 8%;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.story-image {
    flex: 1;
    background-color: #e8e8e8;
    height: 600px;
    overflow: hidden;
    margin-top: 40px;
}

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

.story-text {
    flex: 1;
    padding-right: 60px;
}

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

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

.team-asymmetric {
    padding: 80px 8%;
    background-color: #f5f5f5;
}

.team-header {
    max-width: 600px;
    margin-bottom: 60px;
}

.team-header h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.team-grid {
    display: flex;
    gap: 40px;
}

.team-member {
    flex: 1;
    background-color: #fff;
    overflow: hidden;
}

.team-member-image {
    width: 100%;
    height: 350px;
    background-color: #e8e8e8;
    overflow: hidden;
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member-info {
    padding: 30px;
}

.team-member-info h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: #2c2c2c;
}

.team-member-info .role {
    font-size: 16px;
    color: #d4a574;
    margin-bottom: 15px;
}

.team-member-info p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.contact-page-asymmetric {
    padding: 100px 8%;
    display: flex;
    gap: 80px;
}

.contact-info-offset {
    flex: 1;
    margin-top: 60px;
}

.contact-info-offset h1 {
    font-size: 48px;
    margin-bottom: 30px;
    color: #2c2c2c;
}

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

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #d4a574;
}

.contact-detail p {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
}

.contact-image-float {
    flex: 1;
    height: 700px;
    background-color: #e8e8e8;
    overflow: hidden;
}

.contact-image-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-page-header {
    padding: 80px 8%;
    background-color: #f5f5f5;
}

.services-page-header h1 {
    font-size: 52px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.services-page-header p {
    font-size: 20px;
    color: #666;
    max-width: 700px;
}

.services-detail-section {
    padding: 80px 8%;
}

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

.service-detail-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    height: 400px;
    background-color: #e8e8e8;
    overflow: hidden;
}

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

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

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

.service-detail-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.service-detail-price {
    font-size: 32px;
    font-weight: 700;
    color: #d4a574;
    margin-bottom: 20px;
}

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

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2c2c2c;
}

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

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

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

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

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

.thanks-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 8%;
    background-color: #f5f5f5;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
    background-color: #fff;
    padding: 80px 60px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.thanks-container h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: #2c2c2c;
}

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

.thanks-container .cta-primary {
    margin-top: 30px;
}

@media (max-width: 768px) {
    .hero-asymmetric {
        flex-direction: column;
        min-height: auto;
    }

    .hero-image-offset {
        position: relative;
        width: 100%;
        margin-bottom: 20px;
    }

    .hero-text-float {
        margin-left: 0;
    }

    .intro-offset,
    .form-section-diagonal,
    .testimonial-offset,
    .about-story-offset,
    .contact-page-asymmetric,
    .service-detail-card {
        flex-direction: column;
    }

    .service-card {
        width: 100%;
    }

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

    .service-card.offset-top,
    .service-card.offset-bottom,
    .service-card.offset-center,
    .service-card.offset-right,
    .service-card.offset-left {
        margin: 0;
    }
}