* {
    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.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    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;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #4CAF50;
    color: white;
}

.btn-accept:hover {
    background-color: #45a049;
}

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

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

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

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

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

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

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

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

.ad-notice {
    font-size: 0.75rem;
    color: #666;
    background-color: #f0f0f0;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
}

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: center;
}

.hero-content {
    flex: 1;
    padding: 4rem;
    background-color: #1a1a1a;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    line-height: 1.7;
    color: #e0e0e0;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #e74c3c;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    align-self: flex-start;
}

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

.hero-image {
    flex: 1;
    background-color: #2c3e50;
}

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

.intro-section {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.intro-left {
    flex: 1;
    background-color: #ecf0f1;
}

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

.intro-right {
    flex: 1;
    padding: 4rem;
    background-color: #ffffff;
}

.intro-right h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.intro-right p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.8;
}

.services-showcase {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

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

.services-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.services-header p {
    font-size: 1.2rem;
    color: #666;
}

.service-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto 4rem;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

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

.service-visual {
    flex: 1;
    background-color: #dfe6e9;
}

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

.service-details {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-details h3 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
    color: #2c3e50;
    font-weight: 700;
}

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

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

.benefit-list li {
    padding: 0.6rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: #444;
}

.benefit-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
    font-size: 1.2rem;
}

.service-price {
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background-color: #f8f9fa;
    border-radius: 6px;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.service-price .price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #e74c3c;
}

.service-price .period {
    font-size: 1rem;
    color: #666;
}

.select-service {
    padding: 1rem 2rem;
    background-color: #2c3e50;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
}

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

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

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.form-intro p {
    font-size: 1.15rem;
    color: #bdc3c7;
}

.contact-form {
    background-color: #34495e;
    padding: 3rem;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    background-color: #ffffff;
    color: #1a1a1a;
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 1.25rem;
    background-color: #e74c3c;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.why-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.why-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
    color: #1a1a1a;
    font-weight: 700;
}

.why-content p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.8;
}

.why-grid {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
    flex-wrap: wrap;
}

.why-card {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.why-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.why-card p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.disclaimer-section {
    padding: 3rem 2rem;
    background-color: #ecf0f1;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    background-color: #ffffff;
    border-left: 4px solid #e74c3c;
    border-radius: 4px;
}

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

.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 3rem;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    min-width: 220px;
}

.footer-section h4 {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    color: #e74c3c;
    font-weight: 700;
}

.footer-section p {
    font-size: 0.95rem;
    color: #bdc3c7;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

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

.footer-section ul li {
    margin-bottom: 0.75rem;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #7f8c8d;
}

.page-hero {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 5rem 2rem;
    text-align: center;
}

.page-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.25rem;
    font-weight: 800;
}

.page-hero-content p {
    font-size: 1.25rem;
    color: #bdc3c7;
    line-height: 1.7;
}

.services-detailed {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.service-block {
    margin-bottom: 5rem;
}

.service-block-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 3px solid #e74c3c;
}

.service-block-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.service-block-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: #e74c3c;
}

.price-period {
    font-size: 1rem;
    color: #666;
}

.service-block-content {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.service-block.alternate .service-block-content {
    flex-direction: row-reverse;
}

.service-block-content img {
    flex: 1;
    max-width: 450px;
    border-radius: 8px;
    object-fit: cover;
    height: auto;
}

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

.service-block-text p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-block-text h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-block-text ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-block-text ul li {
    padding: 0.75rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: #444;
    font-size: 1.05rem;
}

.service-block-text ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
}

.service-cta {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #2c3e50;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

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

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

.comparison-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
    font-weight: 700;
}

.comparison-table {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.comparison-header,
.comparison-row {
    display: flex;
}

.comparison-header {
    background-color: #2c3e50;
    color: #ffffff;
    font-weight: 700;
}

.comparison-row {
    border-bottom: 1px solid #ecf0f1;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row:nth-child(even) {
    background-color: #f8f9fa;
}

.comparison-feature,
.comparison-plan {
    flex: 1;
    padding: 1.25rem;
    text-align: center;
}

.comparison-feature {
    text-align: left;
    font-weight: 600;
    color: #2c3e50;
}

.comparison-header .comparison-feature {
    color: #ffffff;
}

.faq-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
    font-weight: 700;
}

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

.faq-item {
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #e74c3c;
}

.faq-item h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.faq-item p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.about-hero {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.about-hero-image {
    flex: 1.2;
    background-color: #ecf0f1;
}

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

.about-hero-text {
    flex: 1;
    padding: 4rem;
    background-color: #2c3e50;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-hero-text h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.about-hero-text p {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #bdc3c7;
}

.story-section {
    display: flex;
    max-width: 1200px;
    margin: 5rem auto;
    gap: 4rem;
    padding: 0 2rem;
}

.story-content {
    flex: 1.5;
}

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    font-weight: 700;
}

.story-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.story-image {
    flex: 1;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
}

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

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

.philosophy-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #2c3e50;
    font-weight: 700;
}

.philosophy-grid {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
}

.philosophy-card {
    flex: 1;
    min-width: 260px;
    padding: 2.5rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.philosophy-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #e74c3c;
    font-weight: 700;
}

.philosophy-card p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.credentials-section {
    display: flex;
    max-width: 1200px;
    margin: 5rem auto;
    gap: 4rem;
    padding: 0 2rem;
}

.credentials-left {
    flex: 1.5;
}

.credentials-left h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    font-weight: 700;
}

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

.credentials-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    color: #444;
    border-bottom: 1px solid #ecf0f1;
}

.credentials-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
    font-size: 1.3rem;
}

.credentials-note {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.8;
    font-style: italic;
}

.credentials-right {
    flex: 1;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
}

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

.approach-section {
    background-color: #2c3e50;
    padding: 5rem 2rem;
    color: #ffffff;
}

.approach-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    font-weight: 700;
}

.approach-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.timeline-number {
    font-size: 3rem;
    font-weight: 800;
    color: #e74c3c;
    min-width: 80px;
}

.timeline-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.timeline-content p {
    font-size: 1.1rem;
    color: #bdc3c7;
    line-height: 1.7;
}

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

.values-content {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

.values-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.values-content p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
}

.values-cards {
    display: flex;
    max-width: 1100px;
    margin: 0 auto;
    gap: 2rem;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-top: 4px solid #e74c3c;
}

.value-card h4 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.value-card p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.cta-about {
    background-color: #ecf0f1;
    padding: 5rem 2rem;
    text-align: center;
}

.cta-about h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.cta-about p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

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

.contact-hero {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 5rem 2rem;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.contact-hero p {
    font-size: 1.3rem;
    color: #bdc3c7;
    max-width: 700px;
    margin: 0 auto;
}

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

.contact-info-grid {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-card {
    flex: 1;
    min-width: 280px;
    padding: 3rem 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.contact-icon {
    color: #e74c3c;
    margin-bottom: 1.5rem;
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.contact-card p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.contact-note {
    font-size: 0.95rem;
    color: #999;
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-map-section {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 5rem;
    gap: 3rem;
}

.map-container {
    flex: 1;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
}

.map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #7f8c8d;
    padding: 2rem;
    text-align: center;
}

.map-placeholder svg {
    margin-bottom: 1rem;
}

.location-details {
    flex: 1;
}

.location-details h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.location-details p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.transport-info h4 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
    font-weight: 700;
}

.transport-info p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.contact-reasons {
    background-color: #ffffff;
    padding: 5rem 2rem;
}

.contact-reasons h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #2c3e50;
    font-weight: 700;
}

.reasons-grid {
    display: flex;
    max-width: 1100px;
    margin: 0 auto;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.reason-item {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #e74c3c;
}

.reason-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.reason-item p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.contact-cta-section {
    background-color: #ecf0f1;
    padding: 5rem 2rem;
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
    color: #2c3e50;
    font-weight: 700;
}

.cta-box p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.faq-contact {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.faq-contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
    font-weight: 700;
}

.faq-grid {
    display: flex;
    max-width: 1100px;
    margin: 0 auto;
    gap: 2rem;
    flex-wrap: wrap;
}

.faq-contact-item {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.faq-contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.faq-contact-item p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.thanks-hero {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

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

.thanks-icon {
    color: #4CAF50;
    margin-bottom: 2rem;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 800;
}

.thanks-main {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 2rem;
}

.service-selected {
    margin-bottom: 3rem;
}

.service-confirmation {
    font-size: 1.15rem;
    color: #2c3e50;
    background-color: #e8f5e9;
    padding: 1rem 2rem;
    border-radius: 6px;
    display: inline-block;
}

.service-confirmation strong {
    color: #4CAF50;
}

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

.next-steps h2 {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    color: #2c3e50;
    font-weight: 700;
    text-align: center;
}

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

.step-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.step-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #e74c3c;
    min-width: 60px;
}

.step-text h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
    font-weight: 700;
}

.step-text p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.thanks-tips {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #fff3cd;
    border-radius: 8px;
    border-left: 4px solid #ffc107;
    text-align: left;
}

.thanks-tips h3 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    color: #2c3e50;
    font-weight: 700;
}

.thanks-tips ul {
    list-style: none;
}

.thanks-tips ul li {
    padding: 0.6rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: #444;
    font-size: 1.05rem;
}

.thanks-tips ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #ffc107;
    font-weight: bold;
}

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

.btn-home,
.btn-services {
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.btn-home {
    background-color: #2c3e50;
    color: white;
}

.btn-home:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
}

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

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

.thanks-testimonial {
    background-color: #2c3e50;
    padding: 4rem 2rem;
}

.testimonial-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.testimonial-text {
    font-size: 1.3rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #ecf0f1;
}

.testimonial-author {
    font-size: 1.05rem;
    color: #bdc3c7;
    font-weight: 600;
}

.legal-page {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 4rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.legal-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 800;
    border-bottom: 3px solid #e74c3c;
    padding-bottom: 1rem;
}

.legal-update {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.25rem;
    color: #2c3e50;
    font-weight: 700;
}

.legal-section h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #34495e;
    font-weight: 600;
}

.legal-section p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin: 1rem 0 1.5rem 2rem;
    list-style: disc;
}

.legal-section ul li {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.legal-section a {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 600;
}

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

@media (max-width: 968px) {
    .hero-split {
        flex-direction: column;
    }

    .hero-content {
        padding: 3rem 2rem;
    }

    .hero-content h1 {
        font-size: 2.25rem;
    }

    .intro-section {
        flex-direction: column;
    }

    .intro-right {
        padding: 3rem 2rem;
    }

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

    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

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

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

    .service-block-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .service-block-content,
    .service-block.alternate .service-block-content {
        flex-direction: column;
    }

    .service-block-content img {
        max-width: 100%;
    }

    .page-hero-content h1 {
        font-size: 2.25rem;
    }

    .comparison-header,
    .comparison-row {
        flex-direction: column;
    }

    .comparison-feature,
    .comparison-plan {
        text-align: left;
        border-bottom: 1px solid #ecf0f1;
    }

    .about-hero {
        flex-direction: column;
    }

    .about-hero-text {
        padding: 3rem 2rem;
    }

    .about-hero-text h1 {
        font-size: 2.25rem;
    }

    .story-section,
    .credentials-section {
        flex-direction: column;
        gap: 2rem;
    }

    .story-image,
    .credentials-right {
        max-width: 100%;
        min-height: 300px;
    }

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

    .philosophy-card {
        min-width: 100%;
    }

    .timeline-item {
        flex-direction: column;
        gap: 1rem;
    }

    .timeline-number {
        min-width: auto;
    }

    .values-cards {
        flex-direction: column;
    }

    .value-card {
        min-width: 100%;
    }

    .contact-hero h1 {
        font-size: 2.25rem;
    }

    .contact-info-grid {
        flex-direction: column;
    }

    .contact-card {
        min-width: 100%;
    }

    .contact-map-section {
        flex-direction: column;
        padding-bottom: 3rem;
    }

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

    .reason-item {
        min-width: 100%;
    }

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

    .faq-contact-item {
        min-width: 100%;
    }

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

    .btn-home,
    .btn-services {
        width: 100%;
        text-align: center;
    }

    .legal-content {
        padding: 2.5rem 1.5rem;
    }

    .legal-content h1 {
        font-size: 2rem;
    }

    .legal-section h2 {
        font-size: 1.5rem;
    }
}