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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.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: 1rem;
}

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

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

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

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

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

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

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-name {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c2c2c;
    letter-spacing: -0.5px;
}

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

.ad-disclosure {
    font-size: 0.75rem;
    color: #666;
    padding: 0.3rem 0.8rem;
    background-color: #f5f5f5;
    border-radius: 3px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

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

.hero-asymmetric {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #fafafa;
}

.hero-image-offset {
    position: absolute;
    right: -5%;
    top: 8%;
    width: 58%;
    height: 75%;
    background-color: #e8d5c4;
    border-radius: 12px;
    overflow: hidden;
    transform: rotate(-2deg);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

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

.hero-content-float {
    position: relative;
    z-index: 10;
    max-width: 600px;
    margin-left: 8%;
    margin-top: 3rem;
    background-color: #ffffff;
    padding: 3.5rem;
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

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

.hero-text {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #555;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #d4a574;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212,165,116,0.3);
}

.cta-primary:hover {
    background-color: #c49563;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212,165,116,0.4);
}

.intro-offset {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

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

.intro-left {
    flex: 0 0 45%;
    transform: translateY(-3rem);
    background-color: #f9f4f0;
    border-radius: 8px;
    overflow: hidden;
}

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

.intro-right {
    flex: 1;
}

.intro-right h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.intro-right p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #444;
    line-height: 1.8;
}

.services-staggered {
    padding: 7rem 2rem;
    background: linear-gradient(135deg, #f5f0eb 0%, #ffffff 50%, #faf7f4 100%);
}

.section-header-offset {
    max-width: 1200px;
    margin: 0 auto 4rem;
    padding-left: 8%;
}

.section-header-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
}

.services-grid-asymmetric {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    align-items: flex-start;
}

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

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

.card-large {
    flex: 0 0 calc(55% - 1.25rem);
}

.card-offset-top {
    flex: 0 0 calc(45% - 1.25rem);
    margin-top: 4rem;
}

.card-offset-bottom {
    flex: 0 0 calc(38% - 1.25rem);
    margin-top: -2rem;
}

.card-wide {
    flex: 0 0 calc(62% - 1.25rem);
}

.card-elevated {
    flex: 0 0 calc(48% - 1.25rem);
    margin-top: 3rem;
}

.card-compact {
    flex: 0 0 calc(52% - 1.25rem);
    margin-top: -4rem;
}

.card-image-wrap {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background-color: #e8d5c4;
}

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

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

.card-content {
    padding: 2rem;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.card-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.7;
}

.price-tag {
    font-size: 1.8rem;
    font-weight: 700;
    color: #d4a574;
    margin-bottom: 1.2rem;
}

.btn-service {
    width: 100%;
    padding: 0.9rem;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.form-section-diagonal {
    padding: 8rem 2rem;
    background: linear-gradient(165deg, #ffffff 0%, #f5f0eb 100%);
    position: relative;
}

.form-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 4rem;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    transform: rotate(-1deg);
}

.form-intro {
    margin-bottom: 3rem;
    text-align: center;
}

.form-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.form-intro p {
    font-size: 1.1rem;
    color: #666;
}

.contact-form {
    transform: rotate(1deg);
}

.selected-service-info {
    background-color: #f9f4f0;
    padding: 1.2rem;
    border-radius: 6px;
    margin-bottom: 2rem;
    border-left: 4px solid #d4a574;
    display: none;
}

.selected-service-info.show {
    display: block;
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c2c2c;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    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: #d4a574;
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background-color: #d4a574;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212,165,116,0.3);
}

.btn-submit:hover {
    background-color: #c49563;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212,165,116,0.4);
}

.trust-section {
    padding: 6rem 2rem;
    background-color: #1a1a1a;
    color: #ffffff;
}

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

.trust-wrapper h3 {
    font-size: 2.3rem;
    margin-bottom: 3rem;
    text-align: center;
}

.trust-blocks {
    display: flex;
    gap: 3rem;
    justify-content: space-between;
}

.trust-item {
    flex: 1;
    text-align: center;
}

.trust-item h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #d4a574;
}

.trust-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #cccccc;
}

.main-footer {
    background-color: #f5f5f5;
    padding: 4rem 2rem 2rem;
}

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

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.footer-brand p {
    color: #666;
    line-height: 1.7;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

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

.footer-column ul li {
    margin-bottom: 0.6rem;
}

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

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 6px;
    border-left: 4px solid #d4a574;
}

.footer-disclaimer p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
    text-align: center;
    color: #666;
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f5f0eb 0%, #ffffff 100%);
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background-color: #ffffff;
    padding: 4rem;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

.thanks-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    color: #d4a574;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.thanks-content p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.7;
}

.thanks-service-info {
    background-color: #f9f4f0;
    padding: 1.5rem;
    border-radius: 6px;
    margin: 2rem 0;
}

.btn-home {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #d4a574;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.btn-home:hover {
    background-color: #c49563;
    transform: translateY(-2px);
}

.content-page {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

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

.content-container h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.content-container h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    color: #2c2c2c;
}

.content-container p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #444;
    line-height: 1.8;
}

.content-container ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.content-container ul li {
    margin-bottom: 0.8rem;
    color: #444;
    line-height: 1.7;
}

.about-hero {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f5f0eb 0%, #ffffff 100%);
}

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

.about-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.about-hero-content p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
}

.about-content {
    padding: 5rem 2rem;
}

.about-section {
    max-width: 1100px;
    margin: 0 auto 5rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.about-section:nth-child(even) {
    flex-direction: row-reverse;
}

.about-image {
    flex: 0 0 45%;
    border-radius: 8px;
    overflow: hidden;
    background-color: #f9f4f0;
}

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

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.about-text p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #444;
    line-height: 1.8;
}

.contact-page {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.contact-info {
    flex: 1;
}

.contact-info h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.info-block {
    margin-bottom: 2.5rem;
}

.info-block h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.info-block p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.contact-image {
    flex: 0 0 45%;
    border-radius: 8px;
    overflow: hidden;
    background-color: #f9f4f0;
}

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

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }

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

    .nav-list {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .hero-asymmetric {
        flex-direction: column;
        min-height: auto;
        padding: 2rem 1rem;
    }

    .hero-image-offset {
        position: relative;
        width: 100%;
        height: 300px;
        right: 0;
        top: 0;
        transform: none;
        margin-bottom: 2rem;
    }

    .hero-content-float {
        margin-left: 0;
        margin-top: 0;
    }

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

    .intro-left {
        flex: 1;
        transform: none;
    }

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

    .service-card {
        flex: 1 1 100%;
        margin-top: 0;
    }

    .trust-blocks {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }

    .about-section {
        flex-direction: column;
        gap: 2rem;
    }

    .about-section:nth-child(even) {
        flex-direction: column;
    }

    .about-image {
        flex: 1;
    }

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

    .contact-image {
        flex: 1;
        min-height: 300px;
    }
}