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

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #d4af37;
    --text-color: #2d2d2d;
    --text-light: #666;
    --bg-light: #f8f8f8;
    --white: #ffffff;
    --border-color: #e0e0e0;
}

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

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.editorial-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.article-header {
    margin-bottom: 3rem;
    text-align: center;
}

.article-header h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--primary-color);
}

.header-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    font-style: italic;
    line-height: 1.5;
}

.intro-story {
    margin-bottom: 3rem;
}

.story-text p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.story-image {
    margin: 2.5rem 0;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.inline-cta {
    margin: 3rem 0;
    padding: 2rem;
    background-color: var(--bg-light);
    text-align: center;
    border-left: 4px solid var(--accent-color);
}

.cta-link {
    font-size: 1.2rem;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s;
}

.cta-link:hover {
    opacity: 0.7;
}

.problem-section {
    margin: 4rem 0;
}

.problem-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.problem-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.problem-item p {
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: justify;
}

.revelation-block {
    margin: 4rem 0;
    padding: 3rem 2rem;
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: 8px;
}

.revelation-block h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.revelation-content p {
    font-size: 1.15rem;
    margin-bottom: 1.3rem;
    line-height: 1.8;
}

.revelation-block img {
    width: 100%;
    margin-top: 2rem;
    border-radius: 4px;
}

.curiosity-hook {
    margin: 3rem 0;
    padding: 1.5rem;
    background-color: #fff9e6;
    border-left: 4px solid var(--accent-color);
    font-style: italic;
}

.curiosity-hook p {
    font-size: 1.05rem;
}

.insight-deep {
    margin: 4rem 0;
}

.insight-deep h2 {
    font-size: 2.1rem;
    margin-bottom: 2rem;
}

.insight-text p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.insight-text em {
    font-weight: 600;
    color: var(--accent-color);
}

.story-case {
    margin: 4rem 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.case-image img {
    width: 100%;
    border-radius: 4px;
}

.case-content {
    padding: 2rem;
    background-color: var(--bg-light);
}

.case-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.case-content p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.inline-cta.secondary {
    background-color: var(--accent-color);
    border: none;
}

.cta-link-alt {
    color: var(--white);
    font-size: 1.1rem;
    text-decoration: none;
    font-weight: 600;
}

.method-reveal {
    margin: 4rem 0;
}

.method-reveal h2 {
    font-size: 2.1rem;
    margin-bottom: 3rem;
    text-align: center;
}

.method-points {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.method-point {
    padding: 2rem;
    border-left: 3px solid var(--accent-color);
}

.point-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.method-point h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.method-point p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.testimonial-inline {
    margin: 4rem 0;
    padding: 2.5rem;
    background-color: var(--bg-light);
    border-left: 5px solid var(--accent-color);
}

.testimonial-inline blockquote {
    font-size: 1.2rem;
    line-height: 1.8;
    font-style: italic;
}

.testimonial-inline cite {
    display: block;
    margin-top: 1.5rem;
    font-size: 1rem;
    font-style: normal;
    color: var(--text-light);
}

.benefits-reveal {
    margin: 4rem 0;
}

.benefits-reveal h2 {
    font-size: 2.1rem;
    margin-bottom: 3rem;
    text-align: center;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item img {
    width: 100%;
    border-radius: 4px;
}

.benefit-item h4 {
    font-size: 1.6rem;
    margin-top: 1rem;
}

.benefit-item p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.urgency-block {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #fff3cd;
    border: 2px solid #ffca2c;
    border-radius: 4px;
}

.urgency-block p {
    font-size: 1.05rem;
}

.services-pricing {
    margin: 5rem 0;
}

.services-pricing h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.services-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: var(--text-light);
}

.pricing-cards {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 2rem;
}

.pricing-card {
    padding: 2.5rem;
    background-color: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    position: relative;
}

.pricing-card.featured {
    border-color: var(--accent-color);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
}

.pricing-card.premium {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: var(--white);
    border: none;
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-color);
    color: var(--white);
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.badge.gold {
    background: linear-gradient(135deg, #d4af37 0%, #f2c94c 100%);
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.pricing-card.premium h3 {
    color: var(--accent-color);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.pricing-card ul {
    list-style: none;
    margin: 1.5rem 0;
}

.pricing-card ul li {
    padding: 0.7rem 0;
    padding-left: 1.5rem;
    position: relative;
}

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

.select-service {
    width: 100%;
    padding: 1rem;
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
    margin-top: 1rem;
}

.select-service:hover {
    opacity: 0.9;
}

.form-section {
    margin: 5rem 0;
    padding: 3rem 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.form-section h2 {
    font-size: 2.1rem;
    margin-bottom: 1rem;
    text-align: center;
}

.form-intro {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-light);
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

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

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

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.submit-btn:hover {
    opacity: 0.9;
}

.final-push {
    margin: 5rem 0;
    text-align: center;
}

.final-push h2 {
    font-size: 2.1rem;
    margin-bottom: 1.5rem;
}

.final-push p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.final-cta {
    margin-top: 2rem;
}

.cta-button-large {
    display: inline-block;
    padding: 1.3rem 3rem;
    background-color: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 4px;
    transition: opacity 0.3s;
}

.cta-button-large:hover {
    opacity: 0.9;
}

.main-footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 3rem 5%;
    margin-top: 5rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
}

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

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ccc;
}

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

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

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #999;
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--accent-color);
    padding: 1rem;
    text-align: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 99;
}

.sticky-cta-button {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(26, 26, 46, 0.95);
    color: var(--white);
    padding: 1.5rem;
    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 {
    flex: 1;
    margin: 0;
}

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

.cookie-accept,
.cookie-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: opacity 0.3s;
}

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

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

.cookie-accept:hover,
.cookie-reject:hover {
    opacity: 0.8;
}

.about-page .about-story {
    margin: 4rem 0;
}

.about-page .mission-block {
    margin: 4rem 0;
    padding: 3rem;
    background-color: var(--bg-light);
    text-align: center;
}

.about-page .mission-block h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.about-page .mission-block p {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.values-section {
    margin: 4rem 0;
}

.values-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-item {
    padding: 2rem;
    background-color: var(--bg-light);
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.value-item p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.team-section {
    margin: 4rem 0;
}

.team-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.team-section > p {
    text-align: center;
    margin-bottom: 2rem;
}

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

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

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

.team-member h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.team-member p {
    color: var(--text-light);
}

.stats-section {
    margin: 4rem 0;
    padding: 3rem 2rem;
    background-color: var(--secondary-color);
    color: var(--white);
    text-align: center;
    border-radius: 8px;
}

.stats-section h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
}

.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.1rem;
}

.cta-section {
    margin: 4rem 0;
    text-align: center;
    padding: 3rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: opacity 0.3s;
}

.cta-button:hover {
    opacity: 0.9;
}

.services-page .pricing-cards {
    max-width: 100%;
}

.services-page .pricing-card.detailed {
    max-width: 100%;
}

.duration {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.card-description {
    margin: 1.5rem 0;
}

.card-description p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.pricing-card h4 {
    font-size: 1.2rem;
    margin: 1.5rem 0 1rem;
}

.comparison-section {
    margin: 5rem 0;
}

.comparison-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.comparison-table {
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.comparison-table th {
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 600;
}

.comparison-table tr:nth-child(even) {
    background-color: var(--bg-light);
}

.guarantee-section {
    margin: 4rem 0;
    padding: 2.5rem;
    background-color: #e8f5e9;
    border-left: 4px solid #4caf50;
    border-radius: 4px;
}

.guarantee-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.guarantee-section p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.contact-page .contact-intro {
    font-size: 1.15rem;
    text-align: center;
    margin-bottom: 3rem;
}

.contact-info-section {
    margin: 4rem 0;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-card p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.contact-card a {
    color: var(--accent-color);
    text-decoration: none;
}

.contact-card .detail {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.faq-section {
    margin: 4rem 0;
}

.faq-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
}

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

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.location-section {
    margin: 4rem 0;
}

.location-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.location-section > p {
    text-align: center;
    margin-bottom: 2rem;
}

.map-placeholder {
    padding: 3rem;
    background-color: var(--bg-light);
    text-align: center;
    border: 2px dashed var(--border-color);
    border-radius: 8px;
}

.policy-page .policy-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.policy-page h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.policy-page h4 {
    font-size: 1.2rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.policy-page p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.policy-page ul {
    margin: 1rem 0 1.5rem 2rem;
}

.policy-page ul li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.policy-page a {
    color: var(--accent-color);
    text-decoration: none;
}

.policy-page a:hover {
    text-decoration: underline;
}

.thanks-page {
    text-align: center;
    padding: 4rem 2rem;
}

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

.success-icon {
    width: 80px;
    height: 80px;
    background-color: #4caf50;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

.thanks-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.thanks-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.thanks-message {
    margin: 3rem 0;
    text-align: left;
}

.thanks-message p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

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

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

.thanks-info {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #e3f2fd;
    border-radius: 8px;
}

.thanks-info p {
    margin-bottom: 0.5rem;
}

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

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: opacity 0.3s;
}

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

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

.btn-primary:hover,
.btn-secondary:hover {
    opacity: 0.9;
}

.thanks-contact {
    margin-top: 3rem;
    font-size: 1.05rem;
}

.thanks-contact a {
    color: var(--accent-color);
    text-decoration: none;
}

@media (min-width: 768px) {
    .editorial-container {
        max-width: 800px;
    }

    .problem-grid {
        flex-direction: row;
    }

    .story-case {
        flex-direction: row;
        align-items: center;
    }

    .case-image {
        flex: 1;
    }

    .case-content {
        flex: 1;
    }

    .benefits-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .benefit-item {
        flex: 1;
        min-width: calc(50% - 1.5rem);
    }

    .pricing-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .pricing-card {
        flex: 1;
        min-width: calc(50% - 1.5rem);
    }

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

    .value-item {
        flex: 1;
        min-width: calc(33.333% - 1.5rem);
    }

    .team-grid {
        flex-direction: row;
        justify-content: center;
    }

    .stats-grid {
        flex-direction: row;
    }

    .contact-grid {
        flex-direction: row;
    }

    .cookie-content {
        flex-direction: row;
    }

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

@media (max-width: 767px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.85rem;
    }

    .article-header h1 {
        font-size: 2rem;
    }

    .header-subtitle {
        font-size: 1.1rem;
    }

    .sticky-cta {
        padding: 0.8rem;
    }

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

    .comparison-table {
        font-size: 0.8rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.5rem;
    }
}