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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    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;
    font-size: 14px;
}

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

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

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

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

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

.main-nav {
    background-color: #fff;
    padding: 20px 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c2c2c;
    letter-spacing: 1px;
}

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

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

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

.ad-notice {
    background-color: #f4f4f4;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 12px;
    color: #666;
}

.hero-asymmetric {
    background-color: #f9f5f1;
    padding: 0;
    overflow: hidden;
}

.hero-offset-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    min-height: 85vh;
}

.hero-text-block {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #fff;
}

.hero-text-block h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 36px;
}

.cta-primary {
    display: inline-block;
    background-color: #d4a574;
    color: #fff;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    align-self: flex-start;
    transition: all 0.3s ease;
}

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

.hero-image-block {
    flex: 1.2;
    background-color: #e8dfd5;
    position: relative;
}

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

.intro-offset {
    background-color: #fff;
    padding: 100px 40px;
}

.intro-narrow {
    max-width: 680px;
    margin: 0 auto 0 12%;
}

.intro-narrow h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 28px;
    color: #1a1a1a;
}

.intro-narrow p {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.visual-break {
    background-color: #f4f1ed;
    padding: 0;
}

.split-image-text {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
}

.split-text {
    flex: 1.3;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-text h3 {
    font-size: 34px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.split-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 18px;
}

.split-image {
    flex: 1;
    background-color: #ddd;
}

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

.services-creative {
    background-color: #fff;
    padding: 100px 40px;
}

.services-header {
    max-width: 800px;
    margin: 0 auto 70px;
    text-align: center;
}

.services-header h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.services-header p {
    font-size: 19px;
    color: #666;
}

.services-grid-offset {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card {
    display: flex;
    gap: 40px;
    align-items: center;
    background-color: #fafafa;
    padding: 0;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-card.offset-right {
    margin-left: 80px;
    margin-right: 0;
    flex-direction: row-reverse;
}

.service-card.offset-center {
    margin: 0 auto;
    max-width: 900px;
}

.service-image {
    flex: 1;
    background-color: #ddd;
    min-height: 380px;
}

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

.service-content {
    flex: 1.2;
    padding: 40px;
}

.service-content h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 24px;
}

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

.select-service {
    background-color: #2c2c2c;
    color: #fff;
    border: none;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.testimonial-inline {
    background-color: #2c2c2c;
    padding: 80px 40px;
}

.testimonial-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-wrapper blockquote {
    border: none;
}

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

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

.process-section {
    background-color: #f9f5f1;
    padding: 100px 40px;
}

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

.process-content h2 {
    font-size: 40px;
    margin-bottom: 60px;
    text-align: center;
    color: #1a1a1a;
}

.process-steps-asymmetric {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.step {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
}

.step.step-wide {
    flex: 1.5;
}

.step.step-narrow {
    flex: 1;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #e8dfd5;
    margin-bottom: 20px;
}

.step h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.step p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.form-section {
    background-color: #fff;
    padding: 100px 40px;
}

.form-container-asymmetric {
    max-width: 700px;
    margin: 0 auto 0 20%;
}

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

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 14px;
    color: #1a1a1a;
}

.form-intro p {
    font-size: 17px;
    color: #666;
}

.service-message {
    background-color: #e8f5e9;
    padding: 14px 20px;
    border-radius: 4px;
    margin-bottom: 24px;
    color: #2e7d32;
    font-weight: 600;
    display: none;
}

.service-message.show {
    display: block;
}

.main-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c2c2c;
    font-size: 15px;
}

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

.submit-btn {
    background-color: #d4a574;
    color: #fff;
    border: none;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    align-self: flex-start;
    transition: all 0.3s ease;
}

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

.final-cta {
    background-color: #f4f1ed;
    padding: 100px 40px;
}

.cta-content-offset {
    max-width: 700px;
    margin: 0 auto 0 15%;
    text-align: left;
}

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

.cta-content-offset p {
    font-size: 20px;
    margin-bottom: 32px;
    color: #555;
}

.cta-secondary {
    display: inline-block;
    background-color: #2c2c2c;
    color: #fff;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.main-footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 40px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: flex;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

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

.footer-col p,
.footer-col li {
    font-size: 14px;
    line-height: 1.8;
    color: #ccc;
}

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

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

.footer-col a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 20px;
    background-color: rgba(255,255,255,0.05);
    border-radius: 4px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #aaa;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    font-size: 13px;
    color: #888;
}

.page-hero {
    background: linear-gradient(135deg, #f9f5f1 0%, #e8dfd5 100%);
    padding: 100px 40px 80px;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.page-hero-content p {
    font-size: 20px;
    color: #666;
}

.about-story {
    background-color: #fff;
    padding: 100px 40px;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-image-section {
    flex: 1;
    background-color: #ddd;
}

.about-image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.about-text-section {
    flex: 1.3;
}

.about-text-section h2 {
    font-size: 34px;
    line-height: 1.3;
    margin-bottom: 28px;
    color: #1a1a1a;
}

.about-text-section p {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.values-section {
    background-color: #f4f1ed;
    padding: 100px 40px;
}

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

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

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

.value-item {
    flex: 1;
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #d4a574;
}

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

.team-section {
    background-color: #fff;
    padding: 100px 40px;
}

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

.team-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.team-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.team-image {
    margin-top: 50px;
    background-color: #ddd;
    border-radius: 8px;
    overflow: hidden;
}

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

.services-page-content {
    padding: 80px 40px;
    background-color: #fff;
}

.services-intro-text {
    max-width: 800px;
    margin: 0 auto 80px;
    text-align: center;
}

.services-intro-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.services-intro-text p {
    font-size: 18px;
    color: #666;
}

.services-list-detailed {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.detailed-service {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.service-detail-image {
    flex: 1;
    background-color: #ddd;
    border-radius: 8px;
    overflow: hidden;
}

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

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

.service-detail-content h3 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.service-price-large {
    font-size: 36px;
    font-weight: 700;
    color: #d4a574;
    margin: 30px 0 24px;
}

.service-cta {
    display: inline-block;
    background-color: #2c2c2c;
    color: #fff;
    padding: 14px 36px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.contact-content {
    background-color: #fff;
    padding: 80px 40px;
}

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

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

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

.info-item {
    margin-bottom: 36px;
}

.info-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: #d4a574;
    margin-bottom: 10px;
}

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

.contact-image-block {
    flex: 1;
    background-color: #ddd;
    border-radius: 8px;
    overflow: hidden;
}

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

.thanks-section {
    background-color: #fff;
    padding: 120px 40px;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
}

.thanks-icon {
    margin: 0 auto 30px;
    width: 80px;
    height: 80px;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 20px;
    color: #666;
    margin-bottom: 24px;
}

.service-confirmation {
    background-color: #f9f5f1;
    padding: 20px;
    border-radius: 8px;
    margin: 24px 0;
}

.service-confirmation p {
    font-size: 17px;
    color: #2c2c2c;
    margin: 0;
}

.thanks-details {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 18px;
}

.thanks-next {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 40px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary {
    display: inline-block;
    background-color: #d4a574;
    color: #fff;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    display: inline-block;
    background-color: #fff;
    color: #2c2c2c;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    border: 2px solid #2c2c2c;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #2c2c2c;
    color: #fff;
    transform: translateY(-2px);
}

.legal-page {
    background-color: #fff;
    padding: 80px 40px;
}

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

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.legal-content h2 {
    font-size: 28px;
    margin: 36px 0 16px;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 22px;
    margin: 28px 0 14px;
    color: #2c2c2c;
}

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

.legal-content ul {
    margin: 16px 0 16px 30px;
}

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

.legal-content strong {
    font-weight: 600;
    color: #1a1a1a;
}

@media (max-width: 768px) {
    .hero-offset-content,
    .split-image-text {
        flex-direction: column;
    }

    .hero-text-block h1 {
        font-size: 36px;
    }

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

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

    .process-steps-asymmetric {
        flex-direction: column;
    }

    .nav-links {
        display: none;
    }

    .about-container,
    .contact-wrapper,
    .detailed-service {
        flex-direction: column;
    }

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

    .thanks-actions {
        flex-direction: column;
        align-items: stretch;
    }
}