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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background: #ffffff;
}

a {
    color: #2c5282;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1a365d;
}

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

.container-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-medium {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.magazine-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 48px;
    background: #ffffff;
    border-bottom: 2px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand a {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 16px;
    font-weight: 500;
    color: #4a5568;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #1a1a1a;
}

.hero-magazine {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    color: #ffffff;
}

.hero-overlay {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-content-split {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    align-items: center;
}

.hero-text {
    flex: 1 1 500px;
}

.hero-text h1 {
    font-size: 56px;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 24px;
}

.hero-lead {
    font-size: 20px;
    line-height: 1.6;
    opacity: 0.95;
}

.hero-image {
    flex: 1 1 400px;
}

.hero-image img {
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.intro-magazine {
    padding: 96px 0 64px;
    background: #f7fafc;
}

.intro-magazine h2 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 24px;
    font-weight: 700;
}

.lead-text {
    font-size: 20px;
    line-height: 1.7;
    color: #2d3748;
}

.multi-column-section {
    padding: 80px 0;
    background: #ffffff;
}

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

.magazine-card {
    flex: 1 1 300px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.magazine-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.magazine-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.magazine-card h3 {
    font-size: 22px;
    margin: 20px 20px 12px;
    font-weight: 600;
}

.magazine-card p {
    margin: 0 20px 20px;
    color: #4a5568;
    line-height: 1.6;
}

.story-section {
    padding: 80px 0;
    background: #faf5ff;
}

.story-section h2 {
    font-size: 36px;
    margin-bottom: 28px;
    font-weight: 700;
    color: #2d3748;
}

.story-section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.inline-cta {
    margin-top: 32px;
}

.btn-inline {
    display: inline-block;
    padding: 14px 32px;
    background: #667eea;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-inline:hover {
    background: #5a67d8;
}

.testimonial-strip {
    padding: 64px 0;
    background: #1a202c;
    color: #ffffff;
}

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

.testimonial-large p {
    font-size: 28px;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-large cite {
    font-size: 16px;
    font-style: normal;
    opacity: 0.8;
}

.asymmetric-content {
    padding: 96px 0;
    background: #ffffff;
}

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

.content-left {
    flex: 1 1 450px;
}

.content-left h2 {
    font-size: 38px;
    margin-bottom: 24px;
    font-weight: 700;
}

.content-left p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #4a5568;
}

.feature-list {
    list-style: none;
    margin-top: 24px;
}

.feature-list li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-size: 17px;
    line-height: 1.6;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: 700;
    font-size: 20px;
}

.content-right {
    flex: 1 1 400px;
}

.content-right img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.services-preview {
    padding: 96px 0;
    background: #f7fafc;
}

.services-preview h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}

.section-intro {
    text-align: center;
    font-size: 19px;
    color: #4a5568;
    max-width: 720px;
    margin: 0 auto 56px;
}

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

.service-card {
    flex: 1 1 280px;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    padding: 32px;
    transition: border-color 0.3s, transform 0.3s;
}

.service-card:hover {
    border-color: #667eea;
    transform: translateY(-4px);
}

.service-card.featured {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border: none;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    font-weight: 600;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-card.featured p {
    color: rgba(255, 255, 255, 0.95);
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: #667eea;
    margin: 20px 0;
}

.service-card.featured .price {
    color: #ffffff;
    font-size: 36px;
}

.btn-select-service {
    width: 100%;
    padding: 14px;
    background: #667eea;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-select-service:hover {
    background: #5a67d8;
}

.service-card.featured .btn-select-service {
    background: #ffffff;
    color: #667eea;
}

.service-card.featured .btn-select-service:hover {
    background: #f7fafc;
}

.form-section {
    padding: 96px 0;
    background: #ffffff;
}

.form-section h2 {
    font-size: 38px;
    margin-bottom: 16px;
    font-weight: 700;
    text-align: center;
}

.form-intro {
    text-align: center;
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 48px;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #2d3748;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #667eea;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #5a67d8;
}

.trust-section {
    padding: 80px 0;
    background: #f7fafc;
}

.trust-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 56px;
    font-weight: 700;
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.testimonial-card {
    flex: 1 1 300px;
    background: #ffffff;
    padding: 32px;
    border-radius: 8px;
    border-left: 4px solid #667eea;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.testimonial-card p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #2d3748;
}

.testimonial-card cite {
    font-size: 15px;
    font-style: normal;
    color: #718096;
    font-weight: 500;
}

.urgency-section {
    padding: 64px 0;
    background: #fef5e7;
}

.urgency-box {
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
    padding: 48px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.urgency-box h3 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
}

.urgency-box p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 28px;
    color: #4a5568;
}

.btn-urgency {
    display: inline-block;
    padding: 16px 48px;
    background: #f59e0b;
    color: #ffffff;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-urgency:hover {
    background: #d97706;
}

.final-story {
    padding: 96px 0;
    background: #ffffff;
}

.final-story h2 {
    font-size: 36px;
    margin-bottom: 28px;
    font-weight: 700;
}

.final-story p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.cta-sticky-trigger {
    padding: 80px 0;
    background: #edf2f7;
}

.final-cta-box {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    padding: 56px 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border-radius: 12px;
}

.final-cta-box h2 {
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: 700;
}

.final-cta-box p {
    font-size: 19px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.btn-final-cta {
    display: inline-block;
    padding: 16px 48px;
    background: #ffffff;
    color: #667eea;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-final-cta:hover {
    background: #f7fafc;
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a202c;
    padding: 16px;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s;
    z-index: 90;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-cta-btn {
    display: inline-block;
    padding: 14px 40px;
    background: #667eea;
    color: #ffffff;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    transition: background 0.3s;
}

.sticky-cta-btn:hover {
    background: #5a67d8;
}

.main-footer {
    background: #1a202c;
    color: #cbd5e0;
    padding: 64px 0 32px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-section {
    flex: 1 1 250px;
}

.footer-section h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-section p {
    line-height: 1.6;
}

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

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

.footer-section a {
    color: #cbd5e0;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid #2d3748;
    color: #a0aec0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2d3748;
    color: #ffffff;
    padding: 24px;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    display: none;
}

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

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

.cookie-content p {
    flex: 1 1 400px;
    margin: 0;
    line-height: 1.6;
}

.cookie-content a {
    color: #90cdf4;
    text-decoration: underline;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-cookie-accept {
    background: #667eea;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background: #5a67d8;
}

.btn-cookie-reject {
    background: #4a5568;
    color: #ffffff;
}

.btn-cookie-reject:hover {
    background: #2d3748;
}

.page-header {
    padding: 80px 0 64px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
    font-weight: 800;
}

.header-subtitle {
    font-size: 20px;
    opacity: 0.95;
}

.about-intro {
    padding: 80px 0;
    background: #ffffff;
}

.about-intro h2 {
    font-size: 36px;
    margin-bottom: 24px;
    font-weight: 700;
}

.about-intro p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.mission-section {
    padding: 80px 0;
    background: #f7fafc;
}

.values-section {
    padding: 80px 0;
    background: #ffffff;
}

.values-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 56px;
    font-weight: 700;
}

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

.value-card {
    flex: 1 1 240px;
    padding: 32px;
    background: #f7fafc;
    border-radius: 8px;
    border-top: 4px solid #667eea;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    font-weight: 600;
    color: #2d3748;
}

.value-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
}

.team-section {
    padding: 80px 0;
    background: #faf5ff;
}

.team-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    font-weight: 700;
}

.team-section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.cta-section {
    padding: 80px 0;
    background: #ffffff;
}

.cta-box {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
    padding: 48px 32px;
    background: #f7fafc;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
}

.cta-box h2 {
    font-size: 32px;
    margin-bottom: 16px;
    font-weight: 700;
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 28px;
    color: #4a5568;
}

.btn-cta {
    display: inline-block;
    padding: 14px 40px;
    background: #667eea;
    color: #ffffff;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-cta:hover {
    background: #5a67d8;
}

.services-detailed {
    padding: 80px 0;
    background: #ffffff;
}

.service-detail-card {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    align-items: center;
    margin-bottom: 80px;
    padding-bottom: 80px;
    border-bottom: 2px solid #e2e8f0;
}

.service-detail-card:last-child {
    border-bottom: none;
}

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

.service-content {
    flex: 1 1 450px;
}

.service-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-description {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 28px;
    color: #4a5568;
}

.service-features h3 {
    font-size: 20px;
    margin-bottom: 16px;
    font-weight: 600;
}

.service-features ul {
    list-style: none;
    margin-bottom: 28px;
}

.service-features li {
    padding: 8px 0 8px 28px;
    position: relative;
    line-height: 1.6;
}

.service-features li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: 700;
}

.service-pricing {
    margin-top: 32px;
}

.price-large {
    font-size: 42px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 12px;
}

.price-note {
    font-size: 15px;
    color: #718096;
    margin-bottom: 20px;
}

.btn-service {
    display: inline-block;
    padding: 14px 40px;
    background: #667eea;
    color: #ffffff;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-service:hover {
    background: #5a67d8;
}

.btn-premium {
    background: #764ba2;
}

.btn-premium:hover {
    background: #6b21a8;
}

.service-image {
    flex: 1 1 400px;
}

.service-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.featured-service {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 48px;
    border-radius: 16px;
    color: #ffffff;
}

.featured-service .service-content {
    flex: 1 1 100%;
}

.featured-service h2 {
    color: #ffffff;
}

.featured-service .service-description,
.featured-service .service-features li,
.featured-service .service-features h3 {
    color: rgba(255, 255, 255, 0.95);
}

.featured-service .price-large {
    color: #ffffff;
}

.featured-service .btn-service {
    background: #ffffff;
    color: #667eea;
}

.featured-service .btn-service:hover {
    background: #f7fafc;
}

.badge-premium {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.guarantee-section {
    padding: 64px 0;
    background: #fef5e7;
}

.guarantee-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
}

.guarantee-section p {
    font-size: 18px;
    line-height: 1.7;
    text-align: center;
    color: #4a5568;
}

.faq-section {
    padding: 80px 0;
    background: #ffffff;
}

.faq-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 56px;
    font-weight: 700;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.faq-item {
    flex: 1 1 45%;
    padding: 24px;
    background: #f7fafc;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 19px;
    margin-bottom: 12px;
    font-weight: 600;
    color: #2d3748;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
}

.contact-info {
    padding: 80px 0;
    background: #ffffff;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 64px;
}

.contact-card {
    flex: 1 1 400px;
}

.contact-card h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-card p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #4a5568;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2d3748;
}

.contact-item p {
    font-size: 16px;
    margin: 0;
    color: #4a5568;
}

.contact-map {
    flex: 1 1 400px;
}

.contact-map img {
    border-radius: 10px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.how-to-reach {
    padding: 64px 0;
    background: #f7fafc;
}

.how-to-reach h2 {
    font-size: 32px;
    margin-bottom: 24px;
    font-weight: 700;
}

.how-to-reach p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.legal-content {
    padding: 80px 0;
    background: #ffffff;
}

.legal-content h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    font-weight: 700;
    color: #2d3748;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 22px;
    margin: 28px 0 16px;
    font-weight: 600;
    color: #2d3748;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #4a5568;
}

.legal-content ul {
    margin: 16px 0 24px 24px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #4a5568;
}

.thanks-section {
    padding: 96px 0;
    background: #f7fafc;
}

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

.thanks-content h1 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 800;
    color: #2d3748;
}

.thanks-lead {
    font-size: 22px;
    text-align: center;
    color: #667eea;
    margin-bottom: 48px;
}

.thanks-details {
    background: #ffffff;
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 48px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.thanks-details p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #4a5568;
}

#service-confirmation {
    font-weight: 600;
    color: #667eea;
    font-size: 19px;
}

.next-steps h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-bottom: 56px;
}

.step-card {
    flex: 1 1 250px;
    background: #ffffff;
    padding: 32px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.step-number {
    display: inline-block;
    width: 48px;
    height: 48px;
    background: #667eea;
    color: #ffffff;
    border-radius: 50%;
    line-height: 48px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
}

.step-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
}

.thanks-cta {
    background: #ffffff;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 32px;
}

.thanks-cta h2 {
    font-size: 28px;
    margin-bottom: 16px;
    font-weight: 700;
}

.thanks-cta p {
    font-size: 17px;
    margin-bottom: 28px;
    color: #4a5568;
}

.thanks-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-primary {
    background: #667eea;
    color: #ffffff;
}

.btn-primary:hover {
    background: #5a67d8;
}

.btn-secondary {
    background: #e2e8f0;
    color: #2d3748;
}

.btn-secondary:hover {
    background: #cbd5e0;
}

.confidence-box {
    padding: 24px;
    background: #fef5e7;
    border-left: 4px solid #f59e0b;
    border-radius: 6px;
}

.confidence-box p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #744210;
}

@media (max-width: 768px) {
    .magazine-nav {
        padding: 16px 24px;
    }

    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-lead {
        font-size: 18px;
    }

    .intro-magazine h2,
    .services-preview h2 {
        font-size: 32px;
    }

    .split-content {
        gap: 32px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: flex-start;
    }

    .faq-item {
        flex: 1 1 100%;
    }
}

@media (max-width: 480px) {
    .nav-links {
        gap: 16px;
        font-size: 13px;
    }

    .hero-text h1 {
        font-size: 28px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .thanks-content h1 {
        font-size: 32px;
    }

    .steps-grid {
        gap: 20px;
    }
}