* {
    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: #ffffff;
}

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

.nav-floating {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    max-width: 900px;
    width: 90%;
}

.nav-logo {
    font-size: 20px;
    font-weight: 700;
    color: #c0392b;
}

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

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

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

.hero-visual {
    position: relative;
    width: 100%;
    height: 95vh;
    margin-top: 30px;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    background: #1a1a1a;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    z-index: 10;
    width: 90%;
    max-width: 800px;
}

.hero-title {
    font-size: 62px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 40px;
    font-weight: 300;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-cta {
    display: inline-block;
    padding: 18px 45px;
    background: #c0392b;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(192, 57, 43, 0.4);
}

.hero-cta:hover {
    background: #a93226;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(192, 57, 43, 0.5);
}

.story-section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.story-narrow {
    max-width: 650px;
    margin: 0 auto 60px;
}

.story-narrow h2 {
    font-size: 38px;
    margin-bottom: 30px;
    font-weight: 700;
    color: #1a1a1a;
}

.story-narrow p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #4a4a4a;
    line-height: 1.8;
}

.inline-visual {
    max-width: 800px;
    margin: 0 auto;
}

.inline-visual img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

.insight-block {
    background: #f8f9fa;
    padding: 80px 20px;
}

.insight-content {
    max-width: 750px;
    margin: 0 auto;
}

.insight-content h3 {
    font-size: 32px;
    margin-bottom: 25px;
    font-weight: 700;
    color: #1a1a1a;
}

.insight-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.insight-reference {
    margin-top: 30px;
    padding: 20px;
    background: #e9ecef;
    border-left: 4px solid #c0392b;
    border-radius: 4px;
}

.insight-reference small {
    font-size: 14px;
    color: #495057;
}

.insight-reference a {
    color: #c0392b;
    text-decoration: none;
}

.insight-reference a:hover {
    text-decoration: underline;
}

.benefits-visual {
    display: flex;
    align-items: center;
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
}

.benefits-left {
    flex: 1;
}

.benefits-left img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

.benefits-right {
    flex: 1;
}

.benefits-right h2 {
    font-size: 42px;
    margin-bottom: 30px;
    font-weight: 700;
    color: #1a1a1a;
}

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

.benefits-list li {
    font-size: 18px;
    margin-bottom: 18px;
    padding-left: 30px;
    position: relative;
    color: #4a4a4a;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #c0392b;
    font-weight: 700;
    font-size: 20px;
}

.testimonials-inline {
    padding: 100px 20px;
    background: #1a1a1a;
}

.testimonial-card {
    max-width: 700px;
    margin: 0 auto 50px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid #c0392b;
    border-radius: 8px;
}

.testimonial-card:last-child {
    margin-bottom: 0;
}

.testimonial-card p {
    font-size: 20px;
    font-style: italic;
    color: #f8f9fa;
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-card cite {
    font-size: 16px;
    color: #adb5bd;
    font-style: normal;
}

.approach-section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.approach-content {
    max-width: 750px;
    margin: 0 auto;
}

.approach-content h2 {
    font-size: 42px;
    margin-bottom: 30px;
    font-weight: 700;
    color: #1a1a1a;
}

.approach-content p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #4a4a4a;
    line-height: 1.8;
}

.science-backed {
    background: #f8f9fa;
    padding: 80px 20px;
}

.science-narrow {
    max-width: 750px;
    margin: 0 auto;
}

.science-narrow h3 {
    font-size: 32px;
    margin-bottom: 25px;
    font-weight: 700;
    color: #1a1a1a;
}

.science-narrow p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.science-reference {
    margin-top: 30px;
    padding: 20px;
    background: #e9ecef;
    border-left: 4px solid #c0392b;
    border-radius: 4px;
}

.science-reference small {
    font-size: 14px;
    color: #495057;
}

.science-reference a {
    color: #c0392b;
    text-decoration: none;
}

.science-reference a:hover {
    text-decoration: underline;
}

.programs-pricing {
    padding: 100px 20px;
    background: #ffffff;
}

.section-title-center {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.price-card {
    flex: 1;
    min-width: 300px;
    max-width: 360px;
    padding: 40px 30px;
    background: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    transition: all 0.3s;
    position: relative;
}

.price-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.price-card.featured {
    border-color: #c0392b;
    box-shadow: 0 8px 25px rgba(192, 57, 43, 0.15);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #c0392b;
    color: #ffffff;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.price-card h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.price-desc {
    font-size: 15px;
    color: #6c757d;
    margin-bottom: 25px;
    min-height: 60px;
}

.price-amount {
    font-size: 42px;
    font-weight: 800;
    color: #c0392b;
    margin-bottom: 25px;
}

.price-period {
    font-size: 18px;
    font-weight: 400;
    color: #6c757d;
}

.price-features {
    list-style: none;
    margin-bottom: 30px;
}

.price-features li {
    font-size: 16px;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    color: #4a4a4a;
}

.price-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #c0392b;
    font-weight: 700;
}

.select-program-btn {
    width: 100%;
    padding: 14px 25px;
    background: #c0392b;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.select-program-btn:hover {
    background: #a93226;
    transform: translateY(-2px);
}

.cta-final {
    padding: 100px 20px;
    background: #f8f9fa;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 15px;
    text-align: center;
    color: #1a1a1a;
    font-weight: 700;
}

.form-container > p {
    text-align: center;
    margin-bottom: 35px;
    color: #6c757d;
    font-size: 16px;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

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

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

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

.disclaimer-section {
    padding: 60px 20px;
    background: #fff8dc;
}

.disclaimer-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background: rgba(255, 255, 255, 0.8);
    border-left: 4px solid #c0392b;
    border-radius: 8px;
}

.disclaimer-box p {
    font-size: 14px;
    color: #495057;
    line-height: 1.7;
}

.disclaimer-box strong {
    color: #c0392b;
}

.footer {
    background: #1a1a1a;
    color: #f8f9fa;
    padding: 60px 20px 20px;
}

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

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 700;
}

.footer-col p {
    font-size: 14px;
    color: #adb5bd;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: #adb5bd;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.references-list {
    list-style: decimal;
    padding-left: 20px;
}

.references-list li {
    margin-bottom: 10px;
    font-size: 13px;
}

.references-list a {
    color: #adb5bd;
    text-decoration: none;
}

.references-list a:hover {
    color: #c0392b;
}

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

.footer-bottom p {
    font-size: 13px;
    color: #6c757d;
}

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    max-width: 500px;
    width: 90%;
    z-index: 10000;
    display: none;
}

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

.cookie-content p {
    font-size: 14px;
    color: #495057;
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.cookie-btn {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

.cookie-btn.reject {
    background: #e9ecef;
    color: #495057;
}

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

.page-hero-small {
    padding: 150px 20px 60px;
    text-align: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
}

.page-hero-small h1 {
    font-size: 48px;
    color: #ffffff;
    font-weight: 700;
}

.about-intro {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-narrow {
    max-width: 750px;
    margin: 0 auto;
}

.about-narrow p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #4a4a4a;
    line-height: 1.8;
}

.about-visual-section {
    display: flex;
    align-items: center;
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
}

.about-image-left {
    flex: 1;
}

.about-image-left img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

.about-text-right {
    flex: 1;
}

.about-text-right h2 {
    font-size: 36px;
    margin-bottom: 25px;
    font-weight: 700;
    color: #1a1a1a;
}

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

.about-philosophy {
    padding: 80px 20px;
    background: #f8f9fa;
}

.philosophy-box {
    max-width: 800px;
    margin: 0 auto;
}

.philosophy-box h2 {
    font-size: 36px;
    margin-bottom: 25px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
}

.philosophy-box p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a4a4a;
    line-height: 1.8;
}

.about-credentials {
    padding: 80px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.credentials-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
}

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

.credentials-list li {
    font-size: 18px;
    margin-bottom: 18px;
    padding-left: 30px;
    position: relative;
    color: #4a4a4a;
}

.credentials-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #c0392b;
    font-weight: 700;
    font-size: 20px;
}

.about-approach-detail {
    padding: 80px 20px;
    background: #f8f9fa;
}

.approach-narrow {
    max-width: 750px;
    margin: 0 auto;
}

.approach-narrow h2 {
    font-size: 36px;
    margin-bottom: 30px;
    font-weight: 700;
    color: #1a1a1a;
}

.approach-narrow p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #4a4a4a;
    line-height: 1.8;
}

.about-image-full {
    padding: 0;
}

.about-image-full img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-cta {
    padding: 80px 20px;
    background: #1a1a1a;
}

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

.cta-box h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 700;
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #adb5bd;
}

.cta-button {
    display: inline-block;
    padding: 16px 45px;
    background: #c0392b;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
}

.cta-button:hover {
    background: #a93226;
    transform: translateY(-2px);
}

.services-intro {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.services-narrow {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}

.services-narrow p {
    font-size: 18px;
    color: #4a4a4a;
    line-height: 1.8;
}

.services-grid {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-item {
    margin-bottom: 80px;
    display: flex;
    gap: 50px;
    align-items: flex-start;
    position: relative;
}

.service-item:nth-child(even) {
    flex-direction: row-reverse;
}

.featured-service {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    border: 2px solid #c0392b;
}

.service-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #c0392b;
    color: #ffffff;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.service-image {
    flex: 1;
    background: #e9ecef;
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

.service-content {
    flex: 1;
}

.service-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #1a1a1a;
}

.service-price {
    font-size: 28px;
    font-weight: 800;
    color: #c0392b;
    margin-bottom: 20px;
}

.service-content > p {
    font-size: 16px;
    margin-bottom: 25px;
    color: #4a4a4a;
    line-height: 1.7;
}

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

.service-features li {
    font-size: 16px;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    color: #4a4a4a;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #c0392b;
    font-weight: 700;
}

.service-best-for {
    font-size: 15px;
    margin-bottom: 25px;
    padding: 15px;
    background: #e9ecef;
    border-left: 3px solid #c0392b;
    border-radius: 4px;
}

.service-select-btn {
    padding: 14px 30px;
    background: #c0392b;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.services-additional {
    padding: 80px 20px;
    background: #f8f9fa;
}

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

.additional-narrow h2 {
    font-size: 36px;
    margin-bottom: 25px;
    font-weight: 700;
    color: #1a1a1a;
}

.additional-narrow p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a4a4a;
    line-height: 1.8;
}

.additional-list {
    list-style: none;
    margin: 30px 0;
}

.additional-list li {
    font-size: 18px;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    color: #4a4a4a;
}

.additional-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #c0392b;
    font-weight: 700;
    font-size: 24px;
}

.services-comparison {
    padding: 80px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.comparison-title {
    font-size: 36px;
    margin-bottom: 40px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
}

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

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
}

.comparison-table thead {
    background: #1a1a1a;
}

.comparison-table th {
    padding: 18px;
    text-align: left;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
}

.comparison-table td {
    padding: 18px;
    border-bottom: 1px solid #e9ecef;
    font-size: 15px;
    color: #4a4a4a;
}

.comparison-table tbody tr:hover {
    background: #f8f9fa;
}

.services-faq {
    padding: 80px 20px;
    background: #f8f9fa;
}

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

.faq-narrow h2 {
    font-size: 36px;
    margin-bottom: 40px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
}

.faq-item {
    margin-bottom: 30px;
    padding: 25px;
    background: #ffffff;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 700;
    color: #c0392b;
}

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

.services-cta-final {
    padding: 80px 20px;
    background: #1a1a1a;
}

.cta-final-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-final-box h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 700;
}

.cta-final-box p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #adb5bd;
}

.cta-link-button {
    display: inline-block;
    padding: 16px 45px;
    background: #c0392b;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
}

.cta-link-button:hover {
    background: #a93226;
    transform: translateY(-2px);
}

.contact-layout {
    display: flex;
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 36px;
    margin-bottom: 35px;
    font-weight: 700;
    color: #1a1a1a;
}

.contact-detail {
    margin-bottom: 35px;
}

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 700;
    color: #c0392b;
}

.contact-detail p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.7;
}

.contact-email-text {
    color: #2c3e50;
    font-weight: 600;
}

.contact-text-block {
    flex: 1;
}

.contact-text-block h2 {
    font-size: 36px;
    margin-bottom: 25px;
    font-weight: 700;
    color: #1a1a1a;
}

.contact-text-block p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #4a4a4a;
    line-height: 1.8;
}

.contact-tips {
    list-style: none;
    margin: 25px 0;
}

.contact-tips li {
    font-size: 16px;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    color: #4a4a4a;
}

.contact-tips li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #c0392b;
    font-weight: 700;
    font-size: 20px;
}

.contact-cta-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 14px 35px;
    background: #c0392b;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

.contact-cta-btn:hover {
    background: #a93226;
    transform: translateY(-2px);
}

.contact-map-placeholder {
    padding: 60px 20px;
    background: #f8f9fa;
}

.map-info {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 40px;
    background: #ffffff;
    border-radius: 8px;
}

.map-info p {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.7;
}

.thanks-container {
    padding: 120px 20px 80px;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #28a745;
    color: #ffffff;
    font-size: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.thanks-message {
    font-size: 18px;
    margin-bottom: 30px;
    color: #4a4a4a;
    line-height: 1.8;
}

.thanks-service-info {
    padding: 20px;
    background: #f8f9fa;
    border-left: 4px solid #c0392b;
    border-radius: 4px;
    margin-bottom: 30px;
    font-size: 16px;
    color: #495057;
}

.thanks-next-steps {
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 40px;
    line-height: 1.7;
}

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

.thanks-btn {
    padding: 14px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
}

.thanks-btn.primary {
    background: #c0392b;
    color: #ffffff;
}

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

.thanks-btn.secondary {
    background: #e9ecef;
    color: #495057;
}

.thanks-btn.secondary:hover {
    background: #dee2e6;
}

.thanks-what-next {
    padding: 80px 20px;
    background: #f8f9fa;
}

.what-next-content {
    max-width: 900px;
    margin: 0 auto;
}

.what-next-content h2 {
    font-size: 36px;
    margin-bottom: 50px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
}

.timeline-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.timeline-step {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #c0392b;
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 700;
    color: #1a1a1a;
}

.step-content p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.7;
}

.thanks-testimonial {
    padding: 80px 20px;
    background: #1a1a1a;
}

.testimonial-box-thanks {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid #c0392b;
    border-radius: 8px;
}

.testimonial-box-thanks p {
    font-size: 20px;
    font-style: italic;
    color: #f8f9fa;
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-box-thanks cite {
    font-size: 16px;
    color: #adb5bd;
    font-style: normal;
}

.legal-content {
    padding: 80px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.legal-text h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.legal-text h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    font-weight: 700;
    color: #2c3e50;
}

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

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

.legal-text ul li {
    font-size: 16px;
    margin-bottom: 12px;
    color: #4a4a4a;
    line-height: 1.7;
}

.legal-text a {
    color: #c0392b;
    text-decoration: none;
}

.legal-text a:hover {
    text-decoration: underline;
}

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

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

    .hero-title {
        font-size: 38px;
    }

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

    .benefits-visual,
    .about-visual-section,
    .contact-layout {
        flex-direction: column;
    }

    .service-item {
        flex-direction: column !important;
    }

    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }

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