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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --dark-bg: #1a1a1a;
    --border-color: #e0e0e0;
    --white: #ffffff;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.3;
    margin-bottom: 1rem;
    font-weight: 700;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.2rem;
}

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

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

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

button {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-bg);
    color: var(--white);
    padding: 1.5rem;
    z-index: 9999;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.cookie-content p {
    text-align: center;
    font-size: 0.95rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
}

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

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

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

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

.floating-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-color);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    font-weight: 500;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--secondary-color);
}

.hero-editorial {
    margin-top: 80px;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1534536281715-e28d76689b4d?w=1600&h=900&fit=crop') center/cover;
    opacity: 0.3;
    z-index: 0;
}

.hero-content-narrow {
    max-width: 700px;
    text-align: center;
    position: relative;
    z-index: 1;
    color: var(--white);
}

.hero-content-narrow h1 {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.lead-text {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-inline {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
}

.cta-inline:hover {
    background: #c0392b;
    color: var(--white);
}

.narrow-story,
.story-container {
    max-width: 680px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.narrow-story h2,
.story-container h2 {
    margin-top: 2rem;
}

.narrow-story p,
.story-container p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.inline-img {
    margin: 2.5rem 0;
    border-radius: 8px;
}

.story-break {
    background: var(--light-bg);
    padding: 3rem 2rem;
}

.insight-block {
    padding: 5rem 2rem;
    background: #f4f4f4;
}

.insight-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.insight-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.insight-visual img {
    border-radius: 8px;
}

.visual-services {
    padding: 5rem 2rem;
    background: var(--white);
}

.services-intro {
    max-width: 680px;
    margin: 0 auto 4rem;
    text-align: center;
}

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

.service-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-visual {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 6px;
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-select-service {
    padding: 0.9rem 1.5rem;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
}

.btn-select-service:hover {
    background: #2980b9;
}

.testimonial-inline {
    padding: 4rem 2rem;
    background: #f9f9f9;
}

.testimonial-inline blockquote {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.7;
    border-left: 4px solid var(--secondary-color);
    padding-left: 2rem;
    margin: 2rem 0;
}

.testimonial-inline cite {
    font-style: normal;
    font-size: 1rem;
    color: #666;
    display: block;
    margin-top: 1rem;
}

.how-it-works {
    padding: 5rem 2rem;
    background: var(--white);
}

.steps-list {
    margin: 2rem 0 3rem;
    padding-left: 2rem;
}

.steps-list li {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.cta-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
}

.cta-btn:hover {
    background: #c0392b;
    color: var(--white);
}

.trust-section {
    padding: 4rem 2rem;
    background: var(--light-bg);
}

.trust-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.trust-item {
    text-align: center;
    padding: 2rem;
}

.trust-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

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

.cta-section h2 {
    color: var(--white);
}

.cta-btn-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.2rem;
    margin-top: 1rem;
}

.cta-btn-large:hover {
    background: #c0392b;
    color: var(--white);
}

.form-section {
    padding: 5rem 2rem;
    background: #fafafa;
}

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

.form-container h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.form-container > p {
    text-align: center;
    margin-bottom: 2rem;
    color: #666;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.btn-submit {
    padding: 1.1rem;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
}

.btn-submit:hover {
    background: #c0392b;
}

.final-push {
    padding: 2rem;
    background: #fff3cd;
    text-align: center;
}

.small-text {
    font-size: 0.95rem;
    color: #856404;
}

.footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.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(--white);
}

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

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 999;
    display: none;
}

.sticky-cta.show {
    display: block;
}

.sticky-cta:hover {
    background: #c0392b;
}

.page-header {
    margin-top: 80px;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    text-align: center;
}

.page-header h1 {
    color: var(--white);
}

.subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.about-story,
.about-approach,
.about-team {
    padding: 4rem 2rem;
}

.about-philosophy {
    padding: 4rem 2rem;
    background: var(--light-bg);
}

.narrow-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.approach-list {
    margin: 2rem 0;
    padding-left: 2rem;
}

.approach-list li {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.about-cta {
    padding: 4rem 2rem;
    background: var(--light-bg);
    text-align: center;
}

.services-detailed {
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-block {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-image img {
    border-radius: 8px;
}

.service-details h2 {
    margin-bottom: 1rem;
}

.price-large {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 1rem 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.service-features {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.service-features li {
    margin-bottom: 0.8rem;
}

.services-cta {
    padding: 4rem 2rem;
    background: var(--light-bg);
    text-align: center;
}

.contact-info {
    padding: 4rem 2rem;
}

.contact-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-details h2 {
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.contact-visual img {
    border-radius: 8px;
}

.contact-notes {
    padding: 3rem 2rem;
    background: var(--light-bg);
}

.contact-cta {
    padding: 4rem 2rem;
    text-align: center;
}

.thanks-hero {
    margin-top: 80px;
    padding: 5rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    color: var(--white);
}

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

.thanks-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
}

.thanks-hero h1 {
    color: var(--white);
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.thanks-service {
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: 6px;
    margin: 2rem 0;
    font-weight: 600;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 600;
}

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

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

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

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

.thanks-next {
    padding: 4rem 2rem;
}

.next-steps {
    margin: 2rem 0;
    padding-left: 2rem;
}

.next-steps li {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.thanks-explore {
    padding: 3rem 2rem;
    background: var(--light-bg);
    text-align: center;
}

.legal-page {
    margin-top: 80px;
    padding: 4rem 2rem;
}

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

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

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

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

.legal-container h3 {
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.legal-container ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-container li {
    margin-bottom: 0.7rem;
    line-height: 1.7;
}

.legal-container p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

@media (min-width: 768px) {
    .hamburger {
        display: none;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .cookie-content p {
        text-align: left;
    }

    .services-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1 1 calc(33.333% - 1.5rem);
        min-width: 280px;
    }

    .insight-wrapper {
        flex-direction: row;
        align-items: center;
    }

    .insight-text,
    .insight-visual {
        flex: 1;
    }

    .trust-wrapper {
        flex-direction: row;
    }

    .trust-item {
        flex: 1;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-col {
        flex: 1;
    }

    .service-block {
        flex-direction: row;
        align-items: center;
    }

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

    .service-image,
    .service-details {
        flex: 1;
    }

    .contact-wrapper {
        flex-direction: row;
        align-items: flex-start;
    }

    .contact-details,
    .contact-visual {
        flex: 1;
    }

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem 2rem;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        display: none;
    }

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

    .hero-content-narrow h1 {
        font-size: 2rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .sticky-cta {
        bottom: 10px;
        right: 10px;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}
