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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #8b7355;
    --accent-color: #c9a87c;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f7f4;
    --bg-white: #ffffff;
    --border-color: #e0ddd8;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

.ad-disclosure {
    background-color: var(--bg-light);
    text-align: center;
    padding: 8px 20px;
    font-size: 12px;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.header-magazine {
    position: sticky;
    top: 0;
    background-color: var(--bg-white);
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

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

.main-nav a {
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
}

.main-nav a:hover {
    color: var(--secondary-color);
}

.hero-magazine {
    position: relative;
    height: 85vh;
    overflow: hidden;
    background-color: var(--bg-light);
}

.hero-image-container {
    width: 100%;
    height: 100%;
    position: relative;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
}

.hero-overlay h1 {
    color: white;
    font-size: 62px;
    font-weight: 700;
    margin-bottom: 25px;
    max-width: 900px;
    line-height: 1.2;
}

.hero-overlay p {
    color: rgba(255,255,255,0.95);
    font-size: 22px;
    max-width: 700px;
    line-height: 1.6;
}

.container-magazine {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

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

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

.intro-split {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.split-content {
    display: flex;
    gap: 80px;
    align-items: center;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 30px;
    line-height: 1.3;
}

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

.split-image {
    flex: 1;
    background-color: var(--bg-light);
}

.split-image img {
    width: 100%;
    height: 600px;
}

.problem-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.problem-section h2 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 35px;
    text-align: center;
}

.problem-section p {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.8;
}

.insight-columns {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.insight-columns h2 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 60px;
    text-align: center;
}

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

.insight-card {
    flex: 1;
    background-color: var(--bg-white);
}

.insight-card img {
    width: 100%;
    height: 400px;
    margin-bottom: 25px;
    background-color: var(--bg-light);
}

.insight-card h3 {
    font-size: 26px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.insight-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.trust-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.testimonial-block {
    margin-bottom: 50px;
}

.testimonial-block blockquote {
    font-size: 24px;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.7;
    padding: 40px 60px;
    background-color: var(--bg-white);
    border-left: 4px solid var(--secondary-color);
}

.testimonial-block cite {
    display: block;
    margin-top: 20px;
    font-size: 16px;
    font-style: normal;
    color: var(--text-light);
}

.benefits-reveal {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.benefits-reveal h2 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 60px;
    text-align: center;
}

.benefits-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.benefit-item {
    flex: 1 1 calc(50% - 25px);
    min-width: 300px;
}

.benefit-item h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.benefit-item p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
}

.ref-link {
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 600;
}

.ref-link:hover {
    text-decoration: underline;
}

.cta-inline {
    padding: 100px 0;
    background-color: var(--secondary-color);
    text-align: center;
}

.cta-inline h2 {
    font-size: 44px;
    color: white;
    margin-bottom: 20px;
}

.cta-inline p {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 35px;
}

.cta-button {
    display: inline-block;
    padding: 18px 45px;
    background-color: var(--primary-color);
    color: white;
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #1a2a3a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.services-pricing {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.services-pricing h2 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 25px;
    text-align: center;
}

.services-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 60px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

.service-card {
    flex: 1 1 calc(50% - 18px);
    min-width: 300px;
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    position: relative;
    transition: all 0.3s ease;
}

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

.service-card.featured {
    border: 2px solid var(--secondary-color);
}

.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--secondary-color);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.service-card h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

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

.service-card ul li {
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

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

.price {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.select-service-btn {
    width: 100%;
    padding: 15px;
    background-color: var(--primary-color);
    color: white;
    font-size: 17px;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.order-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.order-section h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 25px;
    text-align: center;
}

.order-section p {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 50px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    font-family: inherit;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    transition: border-color 0.3s ease;
}

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    font-size: 14px;
    color: var(--text-dark);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
    margin-top: 4px;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background-color: var(--secondary-color);
    color: white;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.disclaimer-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.disclaimer {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
    padding: 30px;
    background-color: var(--bg-white);
    border-left: 3px solid var(--accent-color);
}

.footer-magazine {
    background-color: var(--primary-color);
    color: white;
    padding: 80px 0 30px;
}

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: white;
}

.footer-column p,
.footer-column ul {
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
}

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

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

.footer-column a {
    color: rgba(255,255,255,0.8);
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: white;
}

.footer-references {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 30px;
}

.footer-references h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: white;
}

.footer-references p {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
}

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

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

.footer-bottom p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: white;
    padding: 25px 40px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: var(--secondary-color);
    color: white;
}

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

.btn-reject {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

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

.about-hero,
.services-hero,
.contact-hero {
    padding: 100px 0 60px;
    background-color: var(--bg-light);
    text-align: center;
}

.about-hero h1,
.services-hero h1,
.contact-hero h1 {
    font-size: 56px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.intro-text {
    font-size: 22px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.about-story {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.about-story .split-content.reverse {
    flex-direction: row-reverse;
}

.values-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.values-section h2 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 60px;
    text-align: center;
}

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

.value-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
    padding: 35px;
    background-color: var(--bg-white);
    border-radius: 8px;
}

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

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

.process-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.process-section h2 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 60px;
    text-align: center;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.process-step {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

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

.process-step h3 {
    font-size: 26px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.process-step p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
}

.cta-section {
    padding: 100px 0;
    background-color: var(--bg-light);
    text-align: center;
}

.cta-section h2 {
    font-size: 44px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 35px;
}

.services-detail {
    padding: 80px 0;
    background-color: var(--bg-white);
}

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

.service-detail-item.reverse {
    flex-direction: row-reverse;
}

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

.service-detail-content h2 {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.badge-inline {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.service-detail-content h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-top: 25px;
    margin-bottom: 15px;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 30px;
}

.service-detail-content ul li {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.service-detail-content ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 20px;
}

.service-link {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--secondary-color);
    color: white;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-link:hover {
    background-color: #73614a;
    transform: translateY(-2px);
}

.service-detail-image {
    flex: 1;
    background-color: var(--bg-light);
}

.service-detail-image img {
    width: 100%;
    height: 600px;
}

.faq-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.faq-section h2 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 60px;
    text-align: center;
}

.faq-item {
    background-color: var(--bg-white);
    padding: 35px;
    margin-bottom: 25px;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.faq-item p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-content {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.contact-layout {
    display: flex;
    gap: 80px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.contact-block {
    margin-bottom: 40px;
}

.contact-block h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.contact-block p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
}

.note {
    font-size: 15px;
    font-style: italic;
    color: var(--text-light);
    margin-top: 10px;
}

.contact-image {
    flex: 1;
    background-color: var(--bg-light);
}

.contact-image img {
    width: 100%;
    height: 100%;
    min-height: 800px;
}

.contact-note {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.contact-note h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 25px;
    text-align: center;
}

.contact-note p {
    font-size: 17px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 20px;
}

.contact-note a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.thanks-section {
    padding: 120px 0;
    background-color: var(--bg-white);
    min-height: 60vh;
}

.thanks-content {
    text-align: center;
}

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

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

.thanks-details {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0;
    font-size: 18px;
    color: var(--text-dark);
}

.next-steps {
    text-align: left;
    margin: 50px 0;
    padding: 40px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.next-steps h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.next-steps ul {
    list-style: none;
    padding-left: 0;
}

.next-steps ul li {
    font-size: 17px;
    color: var(--text-dark);
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.next-steps ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

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

.secondary-button {
    display: inline-block;
    padding: 18px 45px;
    background-color: transparent;
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.legal-content {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.legal-content h1 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 40px;
}

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

.legal-content h3,
.legal-content h4 {
    font-size: 22px;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-content ul,
.legal-content ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-content li {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.last-updated {
    margin-top: 50px;
    font-style: italic;
    color: var(--text-light);
}

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

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .hero-overlay h1 {
        font-size: 38px;
    }

    .hero-overlay p {
        font-size: 18px;
    }

    .split-content,
    .contact-layout,
    .service-detail-item {
        flex-direction: column;
        gap: 40px;
    }

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

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

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

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .container-magazine,
    .container-narrow,
    .container-wide {
        padding: 0 20px;
    }
}