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

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-color);
    line-height: 1.7;
    font-size: 17px;
}

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

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

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

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.main-nav {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1.2rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-links a {
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.97);
    color: 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 {
    margin: 0;
    flex: 1;
}

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background: #27ae60;
}

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

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

.hero-editorial {
    padding: 5rem 2rem 3rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-narrow {
    max-width: 720px;
    margin: 0 auto;
}

.label-tag {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.hero-editorial h1 {
    font-size: 2.8rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.hero-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.hero-meta span {
    opacity: 0.8;
}

.content-intro {
    padding: 4rem 2rem;
}

.narrow-content {
    max-width: 720px;
    margin: 0 auto;
}

.wide-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.intro-text {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

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

.insight-block h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.insight-block p {
    margin-bottom: 1.5rem;
}

blockquote {
    border-left: 4px solid var(--secondary-color);
    padding-left: 2rem;
    margin: 2.5rem 0;
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-color);
}

blockquote cite {
    display: block;
    margin-top: 1rem;
    font-size: 0.95rem;
    font-style: normal;
    color: var(--text-light);
}

.method-section {
    padding: 5rem 2rem;
}

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

.method-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.method-number {
    font-size: 3rem;
    font-weight: 900;
    color: #e9ecef;
    margin-bottom: 1rem;
}

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

.testimonial-inline {
    padding: 4rem 2rem;
    background: var(--primary-color);
    color: white;
}

.testimonial-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 10px;
}

.testimonial-text {
    font-size: 1.35rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-size: 1rem;
    opacity: 0.9;
}

.problem-amplify {
    padding: 4rem 2rem;
}

.problem-amplify h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.loss-list {
    list-style: none;
    margin: 2rem 0;
}

.loss-list li {
    padding-left: 2rem;
    margin-bottom: 1rem;
    position: relative;
    font-size: 1.1rem;
}

.loss-list li:before {
    content: '×';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: bold;
}

.case-study {
    padding: 5rem 0;
}

.split-layout {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.case-image,
.case-text {
    flex: 1;
}

.case-image img {
    border-radius: 10px;
}

.case-label {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.case-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.case-text ul {
    margin: 1.5rem 0;
}

.case-text li {
    margin-bottom: 0.7rem;
}

.case-insight {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    font-style: italic;
}

.cta-inline {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.cta-box {
    background: white;
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
}

.cta-box h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.btn-primary {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    padding: 1rem 2.5rem;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

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

.daily-structure {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.daily-structure h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-align: center;
}

.daily-structure .narrow-content p {
    text-align: center;
    margin-bottom: 3rem;
}

.timeline-block {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--border-color);
}

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

.time {
    min-width: 140px;
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.activity h4 {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    color: var(--primary-color);
}

.tools-section {
    padding: 5rem 2rem;
}

.tools-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.tool-item {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

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

.services-preview {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.section-header-center {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header-center h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.services-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    position: relative;
}

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

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

.service-header {
    margin-bottom: 1.5rem;
}

.service-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-top: 0.5rem;
}

.service-desc {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1.05rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding-left: 1.8rem;
    margin-bottom: 0.8rem;
    position: relative;
}

.service-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.btn-service {
    width: 100%;
    background: var(--secondary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

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

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.form-container h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-align: center;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
}

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

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

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

.btn-submit:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.final-thought {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.final-thought h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.closing-line {
    margin-top: 2rem;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 1rem;
    z-index: 90;
    display: none;
}

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

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

.btn-sticky {
    background: white;
    color: var(--primary-color);
    padding: 0.8rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.main-footer {
    background: var(--primary-color);
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 2rem;
}

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

.footer-col p {
    opacity: 0.8;
    line-height: 1.6;
}

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

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

.footer-col a {
    color: white;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-col a:hover {
    opacity: 1;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    text-align: center;
    opacity: 0.7;
}

.page-hero {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    color: white;
}

.page-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

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

.about-story {
    padding: 5rem 2rem;
}

.about-story h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.mission-block {
    padding: 5rem 0;
    background: var(--bg-light);
}

.mission-text {
    flex: 1;
    padding: 0 3rem;
}

.mission-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.mission-image {
    flex: 1;
}

.mission-image img {
    border-radius: 10px;
}

.values-section {
    padding: 5rem 2rem;
}

.values-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    text-align: center;
}

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

.value-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 10px;
}

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

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

.team-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 3rem;
}

.team-member {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
}

.member-role {
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.team-member h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.approach-section {
    padding: 5rem 2rem;
}

.approach-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.approach-list {
    list-style: none;
    margin: 2rem 0;
}

.approach-list li {
    padding-left: 2rem;
    margin-bottom: 1rem;
    position: relative;
}

.approach-list li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.results-proof {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.results-proof h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    text-align: center;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.stat-box {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    min-width: 250px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
}

.why-us {
    padding: 5rem 2rem;
}

.why-us h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.difference-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.diff-item {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

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

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

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.services-intro {
    padding: 4rem 2rem;
}

.services-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.selector-guide {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.guide-item {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.services-detail {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.service-full-card {
    background: white;
    padding: 3rem;
    border-radius: 10px;
    margin-bottom: 3rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    position: relative;
}

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

.featured-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-full-card.elite-card {
    border: 3px solid #f39c12;
}

.elite-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: #f39c12;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-header-full {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.service-title-block h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.service-tagline {
    color: var(--text-light);
    font-size: 1.1rem;
}

.price-large {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--secondary-color);
}

.price-subtitle {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.3rem;
}

.service-body {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-description h4 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-description ul {
    margin: 1rem 0;
}

.service-description li {
    margin-bottom: 0.7rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-description li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.btn-service-large {
    background: var(--secondary-color);
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-service-large:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.availability {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
}

.comparison-section {
    padding: 5rem 2rem;
}

.comparison-section h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-align: center;
}

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

table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
}

table thead {
    background: var(--primary-color);
    color: white;
}

table th,
table td {
    padding: 1.2rem;
    text-align: left;
}

table tbody tr {
    border-bottom: 1px solid var(--border-color);
}

table tbody tr:hover {
    background: var(--bg-light);
}

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

.faq-section h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
}

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

.contact-main {
    padding: 5rem 2rem;
}

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

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

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

.contact-block p {
    margin-bottom: 0.7rem;
    line-height: 1.8;
}

.note {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 1rem;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    border-radius: 10px;
    margin-bottom: 2rem;
}

.contact-quote {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.contact-quote p {
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.contact-quote cite {
    font-size: 0.95rem;
    color: var(--text-light);
}

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

.faq-contact h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.partnerships {
    padding: 5rem 2rem;
}

.partnerships h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.partners-list {
    list-style: none;
    margin-top: 1.5rem;
}

.partners-list li {
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    position: relative;
}

.partners-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.media-kit {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.media-kit h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.media-kit ul {
    margin: 1.5rem 0;
}

.thanks-section {
    padding: 5rem 2rem;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

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

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.thanks-details {
    margin-bottom: 3rem;
}

.service-selected {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

.service-selected h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.service-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.thanks-info h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    text-align: left;
    align-items: flex-start;
}

.step-number {
    background: var(--secondary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.thanks-bonus {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

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

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.thanks-contact {
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.legal-page {
    padding: 5rem 2rem;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.updated {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.legal-page h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-page h4 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.legal-page p {
    margin-bottom: 1.2rem;
}

.legal-page ul,
.legal-page ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.legal-page li {
    margin-bottom: 0.8rem;
}

.cookies-table {
    margin: 2rem 0;
}

@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        gap: 1rem;
    }

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

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

    .split-layout {
        flex-direction: column;
        gap: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .sticky-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .service-header-full {
        flex-direction: column;
        gap: 1.5rem;
    }

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

    .cta-buttons {
        flex-direction: column;
    }

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