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

:root {
    --primary-color: #2c3e50;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 20px rgba(0,0,0,0.08);
    --transition: all 0.3s ease;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--bg-white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

section {
    padding: 80px 20px;
}

.btn-primary {
    display: inline-block;
    padding: 16px 36px;
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: var(--transition);
}

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

.btn-primary.large {
    padding: 20px 48px;
    font-size: 18px;
}

.btn-primary.full-width {
    width: 100%;
}

.btn-secondary {
    display: inline-block;
    padding: 16px 36px;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--bg-white);
}

.btn-text {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 500;
    padding: 8px 0;
}

.btn-text:hover {
    color: var(--accent-color);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 20px;
    z-index: 9999;
    transition: var(--transition);
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

.btn-cookie {
    padding: 10px 24px;
    background: var(--bg-white);
    color: var(--text-dark);
    border: none;
    cursor: pointer;
    font-weight: 500;
}

.btn-cookie.secondary {
    background: transparent;
    color: var(--bg-white);
    border: 1px solid var(--bg-white);
}

.nav-main {
    position: sticky;
    top: 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition);
}

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

.hero-content-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    background: var(--bg-light);
}

.hero-content-left h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.hero-content-left p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 500px;
}

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

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

.intro-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

.intro-split.reverse {
    flex-direction: row-reverse;
}

.intro-image-left {
    flex: 1;
    overflow: hidden;
}

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

.intro-content-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
}

.intro-content-right h2 {
    font-size: 42px;
    margin-bottom: 24px;
    line-height: 1.2;
}

.intro-content-right p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.feature-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px;
    background: var(--bg-white);
}

.feature-intro {
    text-align: center;
    margin-bottom: 60px;
}

.feature-intro h2 {
    font-size: 42px;
}

.feature-grid {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.feature-card {
    flex: 1;
    padding: 40px 30px;
    background: var(--bg-light);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.feature-card p {
    color: var(--text-light);
    font-size: 16px;
}

.services-preview-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    background: var(--bg-white);
}

.services-preview-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.services-preview-content h2 {
    font-size: 42px;
    margin-bottom: 40px;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 40px;
}

.service-item {
    border-left: 4px solid var(--accent-color);
    padding-left: 24px;
}

.service-item h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.service-item p {
    color: var(--text-light);
    margin-bottom: 12px;
    font-size: 16px;
}

.service-item .price {
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-color);
}

.services-preview-image {
    flex: 1;
    overflow: hidden;
}

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

.approach-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

.approach-split.reverse {
    flex-direction: row-reverse;
}

.approach-image {
    flex: 1;
    overflow: hidden;
}

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

.approach-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--bg-light);
}

.approach-content h2 {
    font-size: 42px;
    margin-bottom: 40px;
}

.step {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
}

.step-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 50px;
}

.step-text h4 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.step-text p {
    color: var(--text-light);
    font-size: 16px;
}

.testimonial-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 20px;
    gap: 60px;
}

.testimonial-content {
    flex: 1;
    padding: 40px;
    background: var(--primary-color);
    color: var(--bg-white);
}

.testimonial-content blockquote {
    border: none;
}

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

.testimonial-content cite {
    font-style: normal;
    font-size: 16px;
    opacity: 0.8;
}

.portfolio-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

.portfolio-image-large {
    flex: 1.2;
    overflow: hidden;
}

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

.portfolio-details {
    flex: 0.8;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--bg-light);
}

.portfolio-details h2 {
    font-size: 42px;
    margin-bottom: 24px;
}

.portfolio-details p {
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 40px;
}

.portfolio-stats {
    display: flex;
    gap: 60px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-light);
}

.cta-section-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 20px;
    gap: 60px;
    align-items: center;
}

.cta-left {
    flex: 1;
}

.cta-left h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-left p {
    font-size: 18px;
    color: var(--text-light);
}

.cta-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}

.form-section {
    background: var(--bg-light);
    padding: 80px 20px;
}

.form-container-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
}

.form-intro-left {
    flex: 0.8;
}

.form-intro-left h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.form-intro-left p {
    font-size: 18px;
    color: var(--text-light);
}

.form-wrapper-right {
    flex: 1.2;
}

.main-form {
    background: var(--bg-white);
    padding: 40px;
    box-shadow: var(--shadow);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border-color);
    font-size: 16px;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.footer {
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 60px 20px 20px;
}

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

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-col p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
}

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.7);
    margin-bottom: 12px;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: rgba(255,255,255,0.5);
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.btn-sticky {
    display: inline-block;
    padding: 16px 32px;
    background: var(--accent-color);
    color: var(--bg-white);
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: var(--transition);
}

.btn-sticky:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 30px rgba(0,0,0,0.3);
}

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

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

.services-page-header p {
    font-size: 20px;
    color: var(--text-light);
}

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

.service-card-split {
    display: flex;
    gap: 0;
}

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

.service-card-image {
    flex: 1;
    overflow: hidden;
}

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

.service-card-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--bg-light);
}

.service-card-content h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.service-card-content .service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.service-card-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.7;
}

.service-card-content ul {
    list-style: none;
    margin-bottom: 24px;
}

.service-card-content ul li {
    padding: 8px 0 8px 24px;
    position: relative;
    color: var(--text-light);
}

.service-card-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.about-hero-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    min-height: 500px;
}

.about-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--bg-light);
}

.about-content h1 {
    font-size: 52px;
    margin-bottom: 24px;
    line-height: 1.2;
}

.about-content p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
    overflow: hidden;
}

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

.values-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px;
}

.values-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
}

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

.value-item {
    flex: 1;
    min-width: 280px;
    padding: 40px 30px;
    background: var(--bg-light);
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.value-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.contact-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

.contact-info {
    flex: 1;
    padding: 60px;
    background: var(--primary-color);
    color: var(--bg-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h1 {
    font-size: 52px;
    margin-bottom: 40px;
}

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

.contact-detail h3 {
    font-size: 18px;
    margin-bottom: 12px;
    opacity: 0.8;
}

.contact-detail p {
    font-size: 20px;
}

.contact-map {
    flex: 1;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.contact-map p {
    font-size: 18px;
    color: var(--text-light);
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 20px;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.legal-page .last-updated {
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-page h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 16px;
}

.legal-page p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-light);
}

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

.legal-page ul li {
    margin-bottom: 12px;
    color: var(--text-light);
    line-height: 1.8;
}

.thanks-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}

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

.thanks-content h1 {
    font-size: 52px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.thanks-content p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.6;
}

.thanks-content .btn-primary {
    margin-top: 20px;
}

@media (max-width: 968px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-split,
    .intro-split,
    .services-preview-split,
    .approach-split,
    .portfolio-split,
    .service-card-split,
    .about-hero-split,
    .contact-split {
        flex-direction: column;
    }

    .intro-split.reverse,
    .approach-split.reverse,
    .service-card-split:nth-child(even) {
        flex-direction: column;
    }

    .hero-content-left h1,
    .about-content h1,
    .contact-info h1,
    .thanks-content h1 {
        font-size: 36px;
    }

    .intro-content-right h2,
    .services-preview-content h2,
    .approach-content h2,
    .portfolio-details h2,
    .cta-left h2,
    .form-intro-left h2,
    .feature-intro h2,
    .values-section h2,
    .services-page-header h1,
    .legal-page h1 {
        font-size: 32px;
    }

    .service-card-content h2 {
        font-size: 28px;
    }

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

    .testimonial-split {
        flex-direction: column;
    }

    .cta-section-split,
    .form-container-split {
        flex-direction: column;
        gap: 40px;
    }

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

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

    section {
        padding: 60px 20px;
    }

    .hero-content-left,
    .intro-content-right,
    .services-preview-content,
    .approach-content,
    .portfolio-details,
    .service-card-content,
    .about-content,
    .contact-info {
        padding: 40px 30px;
    }

    .main-form {
        padding: 30px 20px;
    }
}