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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.97);
    color: #ffffff;
    padding: 20px;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background-color: #229954;
    transform: translateY(-1px);
}

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

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e74c3c;
}

.ad-label {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 4px 10px;
    border: 1px solid #bdc3c7;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.hero-visual {
    margin-top: 80px;
    position: relative;
    width: 100%;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
    background-color: #34495e;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 40px;
}

.hero-overlay h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-overlay p {
    font-size: 1.5rem;
    max-width: 700px;
}

.intro-story {
    padding: 100px 40px;
    background-color: #ffffff;
}

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

.story-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #2c3e50;
    line-height: 1.3;
}

.story-wrapper p {
    font-size: 1.2rem;
    color: #546e7a;
    margin-bottom: 20px;
}

.problem-amplify {
    padding: 80px 40px;
    background-color: #ecf0f1;
}

.split-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.text-block {
    flex: 1;
    min-width: 300px;
}

.text-block h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #2c3e50;
}

.text-block p {
    font-size: 1.1rem;
    color: #546e7a;
    margin-bottom: 18px;
}

.image-block {
    flex: 1;
    min-width: 300px;
    background-color: #bdc3c7;
}

.image-block img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.insight-reveal {
    padding: 100px 40px;
    background-color: #2c3e50;
    color: white;
}

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

.insight-container h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
}

.insight-container p {
    font-size: 1.25rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.trust-building {
    padding: 100px 40px;
    background-color: #ffffff;
}

.trust-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-card {
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    background-color: #f8f9fa;
    overflow: hidden;
}

.trust-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.trust-card h3 {
    font-size: 1.5rem;
    margin: 20px 20px 10px;
    color: #2c3e50;
}

.trust-card p {
    margin: 0 20px 20px;
    color: #546e7a;
    font-size: 1rem;
}

.testimonials-inline {
    padding: 80px 40px;
    background-color: #e8f5e9;
}

.testimonial-flow {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.testimonial-flow blockquote {
    background-color: white;
    padding: 35px;
    border-left: 5px solid #27ae60;
    font-size: 1.15rem;
    color: #2c3e50;
    font-style: italic;
}

.testimonial-flow cite {
    display: block;
    margin-top: 15px;
    font-style: normal;
    font-weight: 600;
    color: #27ae60;
    font-size: 0.95rem;
}

.benefits-reveal {
    padding: 100px 40px;
    background-color: #ffffff;
}

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

.benefits-container h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
    color: #2c3e50;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    font-size: 1.2rem;
    color: #2c3e50;
    padding: 18px 0;
    border-bottom: 1px solid #ecf0f1;
    padding-left: 35px;
    position: relative;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 1.4rem;
}

.services-pricing {
    padding: 100px 40px;
    background-color: #fef5e7;
}

.pricing-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-wrapper h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    text-align: center;
    color: #2c3e50;
}

.pricing-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #546e7a;
    margin-bottom: 60px;
}

.service-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: white;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #e74c3c;
}

.service-card p {
    font-size: 1rem;
    color: #546e7a;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-card .price {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.cta-service {
    background-color: #e74c3c;
    color: white;
    border: none;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-service:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
}

.form-section {
    padding: 100px 40px;
    background-color: #ecf0f1;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.form-intro {
    font-size: 1rem;
    color: #546e7a;
    margin-bottom: 30px;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

.form-group input[readonly] {
    background-color: #ecf0f1;
}

.btn-submit {
    width: 100%;
    background-color: #27ae60;
    color: white;
    border: none;
    padding: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.final-cta {
    padding: 120px 40px;
    background-image: linear-gradient(rgba(231, 76, 60, 0.9), rgba(192, 57, 43, 0.9));
    color: white;
    text-align: center;
}

.cta-overlay h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-overlay p {
    font-size: 1.3rem;
    margin-bottom: 40px;
}

.btn-cta-large {
    display: inline-block;
    background-color: white;
    color: #e74c3c;
    padding: 18px 45px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-cta-large:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.disclaimer {
    padding: 60px 40px;
    background-color: #f8f9fa;
}

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

.disclaimer-content p {
    font-size: 0.9rem;
    color: #546e7a;
    line-height: 1.7;
}

.main-footer {
    background-color: #2c3e50;
    color: white;
    padding: 60px 40px 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

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

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #e74c3c;
}

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

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

.footer-col ul li {
    margin-bottom: 12px;
}

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

.footer-col ul li a:hover {
    color: #e74c3c;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
}

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

.page-header {
    margin-top: 80px;
    padding: 80px 40px;
    background-color: #ecf0f1;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    color: #546e7a;
}

.services-detailed {
    padding: 60px 40px;
    background-color: #ffffff;
}

.service-detail {
    max-width: 1400px;
    margin: 0 auto 80px;
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

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

.service-image {
    flex: 1;
    min-width: 300px;
    background-color: #bdc3c7;
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.service-text {
    flex: 1;
    min-width: 300px;
}

.service-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #e74c3c;
}

.service-text p {
    font-size: 1.1rem;
    color: #546e7a;
    margin-bottom: 18px;
}

.service-text ul {
    margin: 25px 0;
    padding-left: 0;
    list-style: none;
}

.service-text ul li {
    font-size: 1rem;
    color: #2c3e50;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.service-text ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
    font-size: 1.5rem;
}

.price-display {
    font-size: 2.2rem;
    font-weight: 700;
    color: #27ae60;
    margin-top: 20px;
}

.about-hero {
    margin-top: 80px;
    padding: 100px 40px;
    background-color: #e8f5e9;
}

.about-intro {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-intro h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    color: #2c3e50;
}

.about-intro p {
    font-size: 1.3rem;
    color: #546e7a;
}

.about-story {
    padding: 80px 40px;
    background-color: #ffffff;
}

.story-block {
    max-width: 800px;
    margin: 0 auto 60px;
}

.story-block h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #2c3e50;
}

.story-block p {
    font-size: 1.15rem;
    color: #546e7a;
    margin-bottom: 18px;
    line-height: 1.8;
}

.about-image-full {
    max-width: 1400px;
    margin: 60px auto;
    background-color: #bdc3c7;
}

.about-image-full img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.mission-block {
    max-width: 800px;
    margin: 60px auto 0;
}

.mission-block h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #e74c3c;
}

.mission-block p {
    font-size: 1.15rem;
    color: #546e7a;
    margin-bottom: 18px;
    line-height: 1.8;
}

.values {
    padding: 80px 40px;
    background-color: #ecf0f1;
}

.values h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.value-item {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    background-color: white;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #e74c3c;
}

.value-item p {
    font-size: 1rem;
    color: #546e7a;
    line-height: 1.6;
}

.team-section {
    padding: 80px 40px;
    background-color: #ffffff;
    text-align: center;
}

.team-section h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    color: #2c3e50;
}

.team-intro {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.15rem;
    color: #546e7a;
    line-height: 1.8;
}

.how-it-works {
    padding: 80px 40px;
    background-color: #fef5e7;
}

.how-it-works h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.process-steps {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.step {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.step h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #e74c3c;
}

.step p {
    font-size: 0.95rem;
    color: #546e7a;
    line-height: 1.6;
}

.contact-header {
    margin-top: 80px;
    padding: 80px 40px;
    background-color: #ecf0f1;
    text-align: center;
}

.contact-header h1 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.contact-header p {
    font-size: 1.2rem;
    color: #546e7a;
}

.contact-content {
    padding: 80px 40px;
    background-color: #ffffff;
}

.contact-info {
    max-width: 800px;
    margin: 0 auto 60px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.info-block h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #e74c3c;
}

.info-block p {
    font-size: 1.1rem;
    color: #546e7a;
    line-height: 1.8;
}

.info-block .note {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-top: 10px;
    font-style: italic;
}

.contact-map {
    max-width: 1000px;
    margin: 0 auto;
}

.map-placeholder {
    background-color: #ecf0f1;
    padding: 80px 40px;
    text-align: center;
    border-radius: 8px;
}

.map-placeholder p {
    font-size: 1.1rem;
    color: #546e7a;
    line-height: 1.8;
}

.faq-section {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.faq-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-item {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #e74c3c;
}

.faq-item p {
    font-size: 1rem;
    color: #546e7a;
    line-height: 1.7;
}

.thanks-section {
    margin-top: 80px;
    padding: 120px 40px;
    background-color: #e8f5e9;
}

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

.thanks-icon {
    width: 100px;
    height: 100px;
    background-color: #27ae60;
    color: white;
    font-size: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 30px;
}

.thanks-container h1 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 1.3rem;
    color: #546e7a;
    margin-bottom: 15px;
}

.service-confirmation {
    font-size: 1.2rem;
    color: #27ae60;
    font-weight: 600;
    margin-bottom: 20px;
}

.thanks-details {
    font-size: 1.1rem;
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 40px;
}

.next-steps {
    background-color: white;
    padding: 35px;
    border-radius: 8px;
    text-align: left;
    margin-bottom: 40px;
}

.next-steps h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.next-steps ol {
    padding-left: 20px;
}

.next-steps li {
    font-size: 1rem;
    color: #546e7a;
    margin-bottom: 12px;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 14px 30px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #e74c3c;
    color: white;
}

.btn-primary:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: white;
    color: #e74c3c;
    border: 2px solid #e74c3c;
}

.btn-secondary:hover {
    background-color: #e74c3c;
    color: white;
}

.legal-page {
    margin-top: 80px;
    padding: 80px 40px;
    background-color: #ffffff;
}

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

.legal-container h1 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.last-update {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-bottom: 40px;
    font-style: italic;
}

.legal-container h2 {
    font-size: 1.8rem;
    color: #e74c3c;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-container h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-container p {
    font-size: 1rem;
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-container ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-container ul li {
    font-size: 1rem;
    color: #546e7a;
    line-height: 1.7;
    margin-bottom: 10px;
}

.legal-container a {
    color: #e74c3c;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-container a:hover {
    color: #c0392b;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        padding: 16px 20px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .hero-overlay h1 {
        font-size: 2.5rem;
    }

    .hero-overlay p {
        font-size: 1.2rem;
    }

    .hero-image-container {
        height: 500px;
    }

    .story-wrapper h2,
    .text-block h2,
    .insight-container h2 {
        font-size: 2rem;
    }

    .split-content,
    .service-detail {
        flex-direction: column;
    }

    .service-detail.reverse {
        flex-direction: column;
    }

    .trust-grid,
    .service-grid,
    .values-grid,
    .process-steps {
        flex-direction: column;
        align-items: center;
    }

    .about-intro h1 {
        font-size: 2.5rem;
    }

    .page-header h1,
    .contact-header h1 {
        font-size: 2.2rem;
    }

    .thanks-container h1 {
        font-size: 2.2rem;
    }

    .thanks-icon {
        width: 80px;
        height: 80px;
        font-size: 3rem;
    }
}