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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #fff;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

.ad-disclosure {
    background-color: #f8f9fa;
    padding: 0.5rem 1rem;
    text-align: center;
    font-size: 0.85rem;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

.main-nav {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

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

.nav-links a {
    color: #495057;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #007bff;
}

.hero-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

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

.hero-text-block {
    flex: 1;
    text-align: center;
}

.hero-text-block h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtext {
    font-size: 1.2rem;
    opacity: 0.95;
    line-height: 1.7;
}

.hero-image-block {
    flex: 1;
    width: 100%;
}

.hero-image-block img {
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    width: 100%;
}

.intro-narrative {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

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

.narrow-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.narrow-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.multi-column-insight {
    padding: 5rem 2rem;
    background-color: #fff;
}

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

.insight-column {
    flex: 1;
}

.insight-column img {
    margin-bottom: 1.5rem;
    border-radius: 8px;
}

.insight-column h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.insight-column p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.7;
}

.problem-amplification {
    padding: 5rem 2rem;
    background-color: #fef5e7;
}

.split-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.text-side {
    flex: 1;
}

.text-side h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.text-side p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.visual-side {
    flex: 1;
}

.visual-side img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
}

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

.testimonial-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background-color: #fff;
    border-left: 4px solid #007bff;
    border-radius: 8px;
}

.testimonial-card .quote {
    font-size: 1.2rem;
    font-style: italic;
    color: #2d3748;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial-card .author {
    font-size: 1rem;
    color: #718096;
    font-weight: 600;
}

.trust-building {
    padding: 5rem 2rem;
    background-color: #fff;
}

.centered-content {
    max-width: 1200px;
    margin: 0 auto;
}

.centered-content h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a202c;
}

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

.trust-item {
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.trust-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.trust-item p {
    color: #4a5568;
    line-height: 1.7;
}

.cta-block-one {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-container h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #fff;
    color: #667eea;
    font-weight: 700;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-size: 1.1rem;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.benefits-reveal {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.magazine-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.main-benefit-column {
    flex: 2;
}

.main-benefit-column h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.main-benefit-column p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #4a5568;
    line-height: 1.7;
}

.main-benefit-column img {
    border-radius: 8px;
    width: 100%;
}

.side-benefits {
    flex: 1;
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.side-benefits h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #2d3748;
}

.side-benefits ul {
    list-style: disc;
    padding-left: 1.5rem;
}

.side-benefits li {
    margin-bottom: 1rem;
    color: #4a5568;
    line-height: 1.6;
}

.services-preview {
    padding: 5rem 2rem;
    background-color: #fff;
}

.services-header {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.services-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.services-header p {
    font-size: 1.1rem;
    color: #4a5568;
}

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

.service-card {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

.badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: #ffc107;
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-details ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-details li {
    margin-bottom: 0.5rem;
}

.service-card .price {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 1.5rem 0;
}

.service-cta {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: #007bff;
    color: #fff;
    font-weight: 700;
    border-radius: 50px;
    transition: background-color 0.3s ease;
}

.service-cta:hover {
    background-color: #0056b3;
}

.service-card.featured .service-cta {
    background-color: #fff;
    color: #667eea;
}

.service-card.featured .service-cta:hover {
    background-color: #f0f0f0;
}

.cta-block-two {
    padding: 3rem 2rem;
    background-color: #e8f4f8;
}

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

.inline-cta p {
    font-size: 1.1rem;
    color: #2d3748;
}

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

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #fff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a202c;
    text-align: center;
}

.form-intro {
    text-align: center;
    color: #4a5568;
    margin-bottom: 2rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    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: #667eea;
}

.submit-button {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.final-testimonial {
    padding: 4rem 2rem;
    background-color: #fff;
}

.disclaimer-section {
    padding: 3rem 2rem;
    background-color: #fff9e6;
    border-top: 2px solid #ffc107;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-content p {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.7;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 2rem 1rem;
}

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #fff;
}

.footer-column p,
.footer-column a {
    color: #bdc3c7;
    margin-bottom: 0.5rem;
    display: block;
    line-height: 1.6;
}

.footer-column a:hover {
    color: #fff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 1rem;
    border-top: 1px solid #34495e;
    text-align: center;
    color: #95a5a6;
}

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

.sticky-cta a {
    display: block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sticky-cta a:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.6);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #fff;
    padding: 1.5rem 2rem;
    z-index: 1000;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    line-height: 1.6;
    text-align: center;
}

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

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-btn.accept {
    background-color: #28a745;
    color: #fff;
}

.cookie-btn.accept:hover {
    background-color: #218838;
}

.cookie-btn.reject {
    background-color: #6c757d;
    color: #fff;
}

.cookie-btn.reject:hover {
    background-color: #5a6268;
}

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

.header-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.header-content p {
    font-size: 1.2rem;
    opacity: 0.95;
}

.about-story,
.services-detailed,
.contact-section,
.legal-content {
    padding: 4rem 2rem;
}

.content-wrapper,
.legal-container {
    max-width: 1000px;
    margin: 0 auto;
}

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

.story-block img {
    border-radius: 8px;
    width: 100%;
}

.story-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.story-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #4a5568;
    line-height: 1.7;
}

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

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

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

.value-item {
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.value-item p {
    color: #4a5568;
    line-height: 1.7;
}

.approach-section,
.commitment-section {
    margin-bottom: 4rem;
}

.approach-section h2,
.commitment-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.approach-section p,
.commitment-section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #4a5568;
    line-height: 1.7;
}

.approach-section img {
    margin: 2rem 0;
    border-radius: 8px;
    width: 100%;
}

.commitment-section ul {
    list-style: disc;
    padding-left: 2rem;
}

.commitment-section li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #4a5568;
    line-height: 1.6;
}

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

.services-intro p {
    font-size: 1.1rem;
    color: #4a5568;
}

.service-full {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
}

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

.service-info h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 1rem;
}

.service-info p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #4a5568;
    line-height: 1.7;
}

.service-info h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.service-info ul {
    list-style: disc;
    padding-left: 2rem;
    margin-bottom: 1.5rem;
}

.service-info li {
    margin-bottom: 0.5rem;
    color: #4a5568;
}

.service-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: #007bff;
    color: #fff;
    font-weight: 700;
    border-radius: 50px;
    transition: background-color 0.3s ease;
}

.service-button:hover {
    background-color: #0056b3;
}

.services-cta {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
}

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

.cta-content h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    color: #fff;
    opacity: 0.95;
    margin-bottom: 2rem;
}

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

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a202c;
}

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

.info-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2d3748;
}

.info-block p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
}

.contact-visual img {
    border-radius: 8px;
    margin-bottom: 2rem;
    width: 100%;
}

.contact-note {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.contact-note h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.contact-note p {
    color: #4a5568;
    line-height: 1.7;
}

.location-section {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

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

.location-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.location-content p {
    font-size: 1.1rem;
    color: #4a5568;
}

.thanks-section {
    padding: 6rem 2rem;
    min-height: 60vh;
}

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

.thanks-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.thanks-message {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

.service-confirmation {
    background-color: #e8f4f8;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: #2d3748;
}

.next-steps {
    margin: 4rem 0;
}

.next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a202c;
}

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

.step {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.step-number {
    display: inline-block;
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2d3748;
}

.step p {
    color: #4a5568;
    line-height: 1.6;
}

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

.back-button,
.services-button {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.back-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.back-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.services-button {
    background-color: #f8f9fa;
    color: #667eea;
    border: 2px solid #667eea;
}

.services-button:hover {
    background-color: #667eea;
    color: #fff;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    color: #1a202c;
}

.legal-container h3 {
    font-size: 1.4rem;
    margin: 1.5rem 0 1rem;
    color: #2d3748;
}

.legal-container h4 {
    font-size: 1.1rem;
    margin: 1rem 0 0.5rem;
    color: #2d3748;
}

.legal-container p {
    margin-bottom: 1rem;
    color: #4a5568;
    line-height: 1.7;
}

.legal-container ul {
    list-style: disc;
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.legal-container li {
    margin-bottom: 0.5rem;
    color: #4a5568;
    line-height: 1.6;
}

.legal-container a {
    color: #007bff;
    text-decoration: underline;
}

.legal-container a:hover {
    color: #0056b3;
}

@media (min-width: 768px) {
    .hero-content {
        flex-direction: row;
        align-items: center;
    }

    .hero-text-block {
        text-align: left;
    }

    .hero-text-block h1 {
        font-size: 3rem;
    }

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

    .split-layout {
        flex-direction: row;
        align-items: center;
    }

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

    .trust-item {
        flex: 1 1 calc(50% - 1rem);
    }

    .magazine-layout {
        flex-direction: row;
    }

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

    .service-card {
        flex: 1 1 calc(50% - 1rem);
    }

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

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

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

    .story-block img {
        flex: 1;
        max-width: 45%;
    }

    .story-text {
        flex: 1;
    }

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

    .value-item {
        flex: 1 1 calc(50% - 1rem);
    }

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

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

    .service-image {
        flex: 1;
    }

    .service-info {
        flex: 1;
    }

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

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

    .step {
        flex: 1;
    }

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