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

:root {
    --primary-color: #2c3e50;
    --accent-color: #c89b7b;
    --text-color: #333;
    --light-bg: #f9f7f4;
    --white: #ffffff;
    --border-color: #e0d9d0;
}

body {
    font-family: 'Georgia', serif;
    color: var(--text-color);
    line-height: 1.7;
    font-size: 17px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.2rem;
}

h3 {
    font-size: 1.6rem;
}

h4 {
    font-size: 1.3rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.magazine-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-family: 'Georgia', serif;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

.nav-right {
    display: flex;
    gap: 2rem;
}

.nav-right a {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 99;
}

.sticky-btn {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.hero-editorial {
    padding: 4rem 5% 3rem;
    background: var(--light-bg);
}

.hero-columns {
    display: flex;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.hero-text-col {
    flex: 1;
}

.hero-text-col h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtext {
    font-size: 1.3rem;
    color: #666;
    line-height: 1.6;
}

.hero-image-col {
    flex: 1;
}

.hero-image-col img {
    border-radius: 3px;
}

.story-intro {
    padding: 4rem 5%;
    background: var(--white);
}

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

.opening-line {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 2rem;
    color: #555;
}

.magazine-grid-1 {
    padding: 5rem 5%;
    background: var(--light-bg);
}

.grid-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
}

.grid-col-large {
    flex: 2;
}

.grid-col-large img {
    margin-bottom: 2rem;
    border-radius: 3px;
}

.grid-col-large h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.grid-col-small {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.small-box {
    background: var(--white);
    padding: 2rem;
    border-radius: 3px;
}

.small-box img {
    border-radius: 3px;
}

.problem-section {
    padding: 5rem 5%;
    background: var(--primary-color);
    color: var(--white);
}

.content-columns {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.col-left, .col-right {
    flex: 1;
}

.problem-section h2 {
    color: var(--white);
    font-size: 2.5rem;
}

.highlight-text {
    font-size: 1.4rem;
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--accent-color);
}

.inline-cta {
    display: inline-block;
    color: var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 3px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.inline-cta:hover {
    color: var(--white);
    border-color: var(--white);
}

.asymmetric-visual {
    padding: 5rem 5%;
    background: var(--white);
}

.asym-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.asym-image-left {
    flex: 1.2;
}

.asym-image-left img {
    border-radius: 3px;
}

.asym-content-right {
    flex: 1;
}

.benefit-list {
    list-style: none;
    padding: 0;
}

.benefit-list li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 1.1rem;
}

.benefit-list li:before {
    content: "✓ ";
    color: var(--accent-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

.testimonial-editorial {
    padding: 4rem 5%;
    background: var(--light-bg);
}

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

blockquote {
    font-size: 1.8rem;
    font-style: italic;
    line-height: 1.6;
    border: none;
    margin: 2rem 0;
}

cite {
    display: block;
    margin-top: 1.5rem;
    font-size: 1.1rem;
    font-style: normal;
    color: #666;
}

.trust-section {
    padding: 5rem 5%;
    background: var(--white);
}

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

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

.trust-columns {
    display: flex;
    gap: 2rem;
}

.trust-col {
    flex: 1;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 3px;
}

.social-proof {
    padding: 4rem 5%;
    background: var(--light-bg);
}

.proof-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
}

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

.proof-item img {
    margin-bottom: 1rem;
    border-radius: 3px;
}

.proof-quote {
    font-style: italic;
    font-size: 1.1rem;
}

.revelation-intro {
    padding: 4rem 5%;
    background: var(--white);
    text-align: center;
}

.revelation-text {
    font-size: 1.2rem;
    color: #666;
}

.services-reveal {
    padding: 3rem 5% 5rem;
    background: var(--white);
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card {
    display: flex;
    gap: 3rem;
    background: var(--light-bg);
    border-radius: 3px;
    overflow: hidden;
}

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

.service-image {
    flex: 1;
}

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

.service-content {
    flex: 1;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail {
    font-size: 0.95rem;
    color: #666;
    margin: 1rem 0;
}

.service-price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--accent-color);
    margin: 1rem 0;
}

.select-service, .service-cta {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.select-service:hover, .service-cta:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.urgency-section {
    padding: 3rem 5%;
    background: #fff3e0;
    border-left: 4px solid var(--accent-color);
}

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

.urgency-highlight {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-top: 1rem;
}

.form-section {
    padding: 5rem 5%;
    background: var(--light-bg);
}

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

.form-intro {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.vintage-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 3px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-family: 'Helvetica Neue', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 3px;
    font-family: 'Georgia', serif;
    font-size: 1rem;
}

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

.submit-btn {
    width: 100%;
    background: var(--accent-color);
    color: var(--white);
    padding: 1.2rem;
    border: none;
    border-radius: 3px;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.final-cta {
    padding: 5rem 5%;
    background: var(--primary-color);
    text-align: center;
    color: var(--white);
}

.final-cta-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.final-cta-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.cta-button-large, .cta-button {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 1.2rem 3rem;
    border-radius: 3px;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-button-large:hover, .cta-button:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.site-footer {
    padding: 4rem 5% 2rem;
    background: #1a1a1a;
    color: #ccc;
}

.footer-columns {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

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

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: #ccc;
    font-size: 0.95rem;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.95);
    color: var(--white);
    padding: 1.5rem 5%;
    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: 2rem;
}

.cookie-content p {
    margin: 0;
}

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

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

.btn-accept, .btn-reject {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background: #b08a6c;
}

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

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

.about-hero, .services-hero, .contact-hero {
    padding: 5rem 5%;
    background: var(--light-bg);
    text-align: center;
}

.about-hero-content h1, .services-hero-content h1, .contact-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

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

.about-story {
    padding: 4rem 5%;
}

.about-story img {
    margin: 2rem auto;
    border-radius: 3px;
}

.team-section {
    padding: 4rem 5%;
    background: var(--light-bg);
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
}

.team-container h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.team-grid {
    display: flex;
    gap: 2rem;
}

.team-member {
    flex: 1;
    text-align: center;
}

.team-member img {
    border-radius: 50%;
    margin: 0 auto 1rem;
    width: 200px;
    height: 200px;
    object-fit: cover;
}

.values-section {
    padding: 4rem 5%;
    background: var(--white);
}

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

.values-wrapper h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.values-list {
    display: flex;
    gap: 2rem;
}

.value-item {
    flex: 1;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 3px;
}

.services-full-list {
    padding: 3rem 5%;
}

.services-info {
    padding: 4rem 5%;
    background: var(--light-bg);
    text-align: center;
}

.process-list {
    max-width: 600px;
    margin: 2rem auto;
    text-align: left;
}

.process-list li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-info-section {
    padding: 4rem 5%;
}

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

.contact-info, .contact-map {
    flex: 1;
}

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

.info-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--accent-color);
}

.note {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-map img {
    border-radius: 3px;
}

.contact-cta {
    padding: 4rem 5%;
    background: var(--light-bg);
    text-align: center;
}

.thanks-section {
    padding: 5rem 5%;
    min-height: 60vh;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thanks-message {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 3rem;
}

.thanks-info {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 3px;
    margin-bottom: 2rem;
    text-align: left;
}

.thanks-steps {
    margin-top: 1.5rem;
}

.thanks-steps li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.service-selected {
    background: #fff3e0;
    padding: 1.5rem;
    border-radius: 3px;
    margin-bottom: 2rem;
}

.selected-service {
    font-weight: bold;
    color: var(--accent-color);
    font-size: 1.2rem;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 3px;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--white);
}

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

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.legal-page {
    padding: 4rem 5%;
}

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

.legal-container h1 {
    margin-bottom: 0.5rem;
}

.update-date {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 3rem;
}

.legal-container h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.legal-container h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-container ul, .legal-container ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-container li {
    margin-bottom: 0.5rem;
}

.gdpr-table, .cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.gdpr-table th, .cookies-table th {
    background: var(--light-bg);
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    border: 1px solid var(--border-color);
}

.gdpr-table td, .cookies-table td {
    padding: 1rem;
    border: 1px solid var(--border-color);
}

@media (max-width: 768px) {
    .hero-columns, .content-columns, .asym-container, .trust-columns, .proof-grid, .footer-columns, .team-grid, .values-list, .contact-container, .grid-wrapper {
        flex-direction: column;
    }

    .service-card:nth-child(even) {
        flex-direction: column;
    }

    h1 {
        font-size: 2.2rem;
    }

    .hero-text-col h1 {
        font-size: 2.5rem;
    }

    .nav-right {
        gap: 1rem;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

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

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