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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fafafa;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    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: #d4a574;
    text-decoration: underline;
}

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

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

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

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

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

.btn-reject:hover {
    background-color: #333333;
}

.ad-disclosure {
    background-color: #f0e6d6;
    color: #5a5a5a;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    border-bottom: 1px solid #d4a574;
}

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

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

.nav-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c2c2c;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

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

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

.hero-editorial {
    background-color: #ffffff;
    padding: 80px 40px;
}

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

.hero-text-narrow {
    margin-bottom: 50px;
}

.hero-text-narrow h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 600;
}

.hero-lead {
    font-size: 20px;
    color: #5a5a5a;
    line-height: 1.6;
}

.hero-image-inline {
    width: 100%;
    background-color: #e8dcc8;
}

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

.intro-story {
    background-color: #f5f0e8;
    padding: 100px 40px;
}

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

.col-text-main {
    flex: 1.2;
}

.col-text-main h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1a1a1a;
    line-height: 1.3;
}

.col-text-main p {
    margin-bottom: 18px;
    font-size: 17px;
    color: #3a3a3a;
}

.col-image-side {
    flex: 1;
    background-color: #d4c4a8;
}

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

.services-highlight {
    background-color: #ffffff;
    padding: 100px 40px;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title-center {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.services-grid-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background-color: #fafafa;
    border: 1px solid #e0e0e0;
    padding: 0;
    width: calc(33.333% - 20px);
    min-width: 320px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #d4c4a8;
}

.service-card h3 {
    font-size: 22px;
    margin: 24px 24px 12px;
    color: #1a1a1a;
}

.service-card p {
    margin: 0 24px 12px;
    font-size: 15px;
    color: #5a5a5a;
    flex-grow: 1;
}

.service-card .price {
    font-size: 24px;
    font-weight: 700;
    color: #d4a574;
    margin: 12px 24px;
}

.btn-select-service {
    margin: 0 24px 24px;
    padding: 14px 28px;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.service-card.selected {
    border: 2px solid #d4a574;
}

.materials-section {
    background-color: #f5f0e8;
    padding: 100px 40px;
}

.col-image-left {
    flex: 1;
    background-color: #d4c4a8;
}

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

.col-text-right {
    flex: 1.2;
}

.col-text-right h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1a1a1a;
    line-height: 1.3;
}

.col-text-right p {
    margin-bottom: 18px;
    font-size: 17px;
    color: #3a3a3a;
}

.process-steps {
    background-color: #ffffff;
    padding: 100px 40px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.container-narrow h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a1a;
}

.step-block {
    margin-bottom: 40px;
    padding-left: 30px;
    border-left: 3px solid #d4a574;
}

.step-block h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

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

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

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

.container-form h2 {
    font-size: 34px;
    margin-bottom: 16px;
    text-align: center;
    color: #1a1a1a;
}

.container-form > p {
    text-align: center;
    margin-bottom: 40px;
    font-size: 17px;
    color: #5a5a5a;
}

.service-form {
    background-color: #ffffff;
    padding: 40px;
    border: 1px solid #e0e0e0;
}

.selected-service-display {
    background-color: #f9f9f9;
    padding: 16px;
    margin-bottom: 30px;
    font-weight: 600;
    color: #1a1a1a;
    border-left: 4px solid #d4a574;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cccccc;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

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

.btn-submit:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

.disclaimer-section {
    background-color: #fafafa;
    padding: 60px 40px;
    border-top: 1px solid #e0e0e0;
}

.disclaimer-text {
    font-size: 13px;
    color: #6a6a6a;
    line-height: 1.6;
    text-align: center;
    font-style: italic;
}

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

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

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

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

.footer-col p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 8px;
}

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

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

.footer-col ul li a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

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

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

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

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

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

.thanks-content p {
    font-size: 18px;
    margin-bottom: 16px;
    color: #4a4a4a;
}

.thanks-content .btn-home {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 32px;
    background-color: #2c2c2c;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.thanks-content .btn-home:hover {
    background-color: #d4a574;
    color: #1a1a1a;
}

.page-header {
    background-color: #f5f0e8;
    padding: 60px 40px;
    text-align: center;
}

.page-header h1 {
    font-size: 40px;
    color: #1a1a1a;
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px;
}

.page-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

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

.page-content p {
    margin-bottom: 16px;
    font-size: 16px;
    color: #3a3a3a;
    line-height: 1.7;
}

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

.page-content ul li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #3a3a3a;
}

.contact-info-block {
    background-color: #f9f9f9;
    padding: 30px;
    margin: 30px 0;
    border-left: 4px solid #d4a574;
}

.contact-info-block h3 {
    margin-top: 0;
}

.contact-info-block p {
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .container-magazine {
        flex-direction: column;
    }

    .nav-split {
        padding: 0 20px;
    }

    .nav-right {
        gap: 16px;
    }

    .hero-text-narrow h1 {
        font-size: 32px;
    }

    .service-card {
        width: 100%;
    }

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