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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    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-actions {
    display: flex;
    gap: 1rem;
}

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

.btn-accept {
    background: #3182ce;
    color: #ffffff;
}

.btn-accept:hover {
    background: #2c5aa0;
}

.btn-reject {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

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

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #2d3748;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

.nav-menu a:hover {
    color: #3182ce;
}

.hero-asymmetric {
    margin-top: 80px;
    min-height: 85vh;
    display: flex;
    position: relative;
    overflow: hidden;
}

.hero-content-offset {
    flex: 1;
    padding: 5rem 2rem 3rem 3rem;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.hero-text-block {
    max-width: 550px;
    margin-left: 8%;
}

.hero-text-block h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1a202c;
    font-weight: 800;
}

.hero-text-block p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #4a5568;
    line-height: 1.7;
}

.cta-hero {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #3182ce;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-hero:hover {
    background: #2c5aa0;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(49, 130, 206, 0.3);
}

.hero-image-overlap {
    position: absolute;
    right: 0;
    top: 15%;
    width: 45%;
    height: 70%;
    z-index: 10;
}

.hero-image-overlap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px 0 0 12px;
    box-shadow: -20px 20px 60px rgba(0, 0, 0, 0.15);
}

.intro-offset {
    padding: 6rem 2rem;
    display: flex;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.intro-narrow {
    flex: 1.2;
    padding-left: 8%;
}

.intro-narrow h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
    font-weight: 700;
}

.intro-narrow p {
    font-size: 1.15rem;
    color: #4a5568;
    line-height: 1.8;
}

.intro-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-card {
    background: #f7fafc;
    padding: 2rem;
    border-left: 4px solid #3182ce;
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #3182ce;
}

.stat-label {
    font-size: 1rem;
    color: #4a5568;
    margin-top: 0.5rem;
}

.problem-amplify {
    display: flex;
    min-height: 600px;
    background: #1a202c;
    margin: 4rem 0;
}

.problem-visual {
    flex: 0.9;
    position: relative;
}

.problem-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.problem-text {
    flex: 1.1;
    padding: 4rem 5rem 4rem 3rem;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.problem-text h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.problem-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #e2e8f0;
}

.cta-inline {
    display: inline-block;
    margin-top: 1rem;
    padding: 1rem 2rem;
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #ffffff;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-inline:hover {
    background: #ffffff;
    color: #1a202c;
}

.services-asymmetric {
    padding: 5rem 2rem;
    background: #f7fafc;
}

.services-header-offset {
    max-width: 600px;
    margin-left: 12%;
    margin-bottom: 3rem;
}

.services-header-offset h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a202c;
    font-weight: 800;
}

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

.services-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3%;
}

.service-card-large,
.service-card-medium,
.service-card-small {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
}

.service-card-large:hover,
.service-card-medium:hover,
.service-card-small:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

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

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

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

.service-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #3182ce;
    color: #ffffff;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    border-radius: 4px;
    font-weight: 600;
}

.service-card-large h3,
.service-card-medium h3,
.service-card-small h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #1a202c;
    font-weight: 700;
}

.service-card-large p,
.service-card-medium p,
.service-card-small p {
    flex-grow: 1;
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 2rem;
    font-weight: 800;
    color: #3182ce;
    margin-bottom: 1.5rem;
}

.service-price span {
    font-size: 0.9rem;
    color: #718096;
    font-weight: 400;
    display: block;
    margin-top: 0.25rem;
}

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

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

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

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

.trust-content-narrow h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a202c;
    font-weight: 700;
}

.testimonial-inline {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: #f7fafc;
    border-left: 5px solid #3182ce;
    border-radius: 4px;
}

.testimonial-inline p {
    font-size: 1.1rem;
    color: #2d3748;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-inline cite {
    font-size: 0.95rem;
    color: #718096;
    font-style: normal;
    font-weight: 600;
}

.insight-section {
    padding: 5rem 2rem;
    background: #edf2f7;
}

.insight-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.insight-text {
    flex: 1.2;
}

.insight-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
    font-weight: 700;
}

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

.insight-image {
    flex: 1;
}

.insight-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

.benefits-reveal h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a202c;
    font-weight: 700;
}

.benefits-asymmetric {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.benefit-large,
.benefit-medium,
.benefit-small {
    padding: 2.5rem;
    background: #f7fafc;
    border-radius: 8px;
    border-top: 4px solid #3182ce;
}

.benefit-large {
    flex: 1 1 calc(55% - 1rem);
}

.benefit-medium {
    flex: 1 1 calc(45% - 1rem);
}

.benefit-small {
    flex: 1 1 calc(33.333% - 1.5rem);
}

.benefit-large h3,
.benefit-medium h3,
.benefit-small h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #1a202c;
    font-weight: 700;
}

.benefit-large p,
.benefit-medium p,
.benefit-small p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.6;
}

.urgency-block {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #2c5aa0 0%, #3182ce 100%);
    color: #ffffff;
}

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

.urgency-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.urgency-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #e2e8f0;
}

.cta-urgency {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: #ffffff;
    color: #2c5aa0;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

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

.form-container-offset {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-left: 15%;
}

.form-intro {
    margin-bottom: 2.5rem;
}

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

.form-intro p {
    font-size: 1.05rem;
    color: #718096;
}

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

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #3182ce;
}

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

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

.final-cta {
    padding: 4rem 2rem;
    background: #1a202c;
    color: #ffffff;
    text-align: center;
}

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

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #e2e8f0;
}

.cta-final {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: #3182ce;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-final:hover {
    background: #2c5aa0;
    transform: translateY(-3px);
}

.footer-asymmetric {
    background: #2d3748;
    color: #e2e8f0;
    padding: 3rem 2rem 1.5rem;
}

.footer-main {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-col-large {
    flex: 1.5;
}

.footer-col-small {
    flex: 1;
}

.footer-col-large h3,
.footer-col-small h4 {
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 700;
}

.footer-col-large p {
    line-height: 1.7;
    color: #cbd5e0;
}

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

.footer-col-small ul li {
    margin-bottom: 0.5rem;
}

.footer-col-small a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #4a5568;
    text-align: center;
    color: #cbd5e0;
    font-size: 0.9rem;
}

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

.sticky-cta a {
    display: block;
    padding: 1rem 2rem;
    background: #3182ce;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(49, 130, 206, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta a:hover {
    background: #2c5aa0;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(49, 130, 206, 0.5);
}

.page-hero {
    margin-top: 80px;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #2c5aa0 0%, #3182ce 100%);
    color: #ffffff;
    text-align: center;
}

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

.page-hero p {
    font-size: 1.25rem;
    color: #e2e8f0;
}

.about-story {
    padding: 5rem 2rem;
    background: #ffffff;
}

.story-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-block {
    flex: 1;
}

.story-block h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
    font-weight: 700;
}

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

.story-image {
    flex: 1;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

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

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

.value-card {
    flex: 1 1 calc(50% - 1rem);
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #3182ce;
    font-weight: 700;
}

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

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

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

.team-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a202c;
    font-weight: 700;
}

.team-intro p {
    font-size: 1.15rem;
    color: #718096;
}

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

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

.timeline-section {
    padding: 5rem 2rem;
    background: #edf2f7;
}

.timeline-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #1a202c;
    font-weight: 700;
}

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

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

.timeline-year {
    font-size: 2rem;
    font-weight: 800;
    color: #3182ce;
    min-width: 120px;
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #1a202c;
    font-weight: 700;
}

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

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

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

.commitment-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
    font-weight: 700;
}

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

.services-intro {
    padding: 3rem 2rem;
    background: #ffffff;
}

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

.intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a202c;
    font-weight: 700;
}

.intro-content p {
    font-size: 1.15rem;
    color: #4a5568;
}

.services-detailed {
    padding: 3rem 2rem 5rem;
    background: #f7fafc;
}

.service-detail-card {
    max-width: 1200px;
    margin: 0 auto 3rem;
    display: flex;
    gap: 3rem;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-detail-image {
    flex: 1;
}

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

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

.service-badge {
    display: inline-block;
    background: #3182ce;
    color: #ffffff;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    border-radius: 4px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-detail-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a202c;
    font-weight: 700;
}

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

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

.service-includes li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
    color: #4a5568;
}

.service-includes li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3182ce;
    font-weight: 700;
}

.service-detail-price {
    margin-bottom: 2rem;
}

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

.service-detail-price .price-note {
    display: block;
    font-size: 0.95rem;
    color: #718096;
    margin-top: 0.5rem;
}

.service-guarantee {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #2c5aa0 0%, #3182ce 100%);
    color: #ffffff;
}

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

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

.guarantee-content p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #e2e8f0;
}

.contact-layout {
    padding: 4rem 2rem;
    background: #f7fafc;
}

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

.info-card {
    flex: 1 1 calc(50% - 1rem);
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #3182ce;
    font-weight: 700;
}

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

.info-card a {
    color: #3182ce;
    text-decoration: none;
    font-weight: 600;
}

.info-card a:hover {
    text-decoration: underline;
}

.contact-urgency {
    padding: 3rem 2rem;
    background: #ffffff;
}

.urgency-message {
    max-width: 900px;
    margin: 0 auto;
    padding: 2.5rem;
    background: #fff5f5;
    border-left: 5px solid #e53e3e;
    border-radius: 4px;
}

.urgency-message h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #742a2a;
    font-weight: 700;
}

.urgency-message p {
    font-size: 1.05rem;
    color: #742a2a;
    line-height: 1.7;
}

.contact-faq {
    padding: 4rem 2rem;
    background: #f7fafc;
}

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

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

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1a202c;
    font-weight: 700;
}

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

.thanks-hero {
    margin-top: 80px;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: #ffffff;
    text-align: center;
}

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

.thanks-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
    display: inline-block;
    width: 100px;
    height: 100px;
    line-height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

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

.thanks-hero p {
    font-size: 1.2rem;
    color: #f0fff4;
}

.thanks-next-steps {
    padding: 5rem 2rem;
    background: #ffffff;
}

.thanks-next-steps h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a202c;
    font-weight: 700;
}

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

.step-card {
    flex: 1;
    background: #f7fafc;
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: #3182ce;
    color: #ffffff;
    font-size: 2rem;
    font-weight: 800;
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a202c;
    font-weight: 700;
}

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

.thanks-info {
    padding: 3rem 2rem;
    background: #f7fafc;
}

.info-block {
    max-width: 900px;
    margin: 0 auto;
    padding: 2.5rem;
    background: #fffaf0;
    border-left: 5px solid #dd6b20;
    border-radius: 4px;
}

.info-block h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #7c2d12;
    font-weight: 700;
}

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

.info-block a {
    color: #dd6b20;
    font-weight: 600;
}

.thanks-resources {
    padding: 4rem 2rem;
    background: #ffffff;
}

.thanks-resources h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a202c;
    font-weight: 700;
}

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

.resource-card {
    flex: 1;
    background: #f7fafc;
    padding: 2rem;
    border-radius: 8px;
    border-top: 4px solid #3182ce;
}

.resource-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1a202c;
    font-weight: 700;
}

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

.thanks-cta {
    padding: 4rem 2rem;
    background: #f7fafc;
}

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

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

.btn-primary {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: #3182ce;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

.legal-page {
    margin-top: 80px;
    padding: 4rem 2rem;
    background: #ffffff;
}

.legal-page h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: #1a202c;
    font-weight: 800;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.update-date {
    font-size: 0.95rem;
    color: #718096;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.legal-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a202c;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 1.35rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2d3748;
    font-weight: 600;
}

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

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content li {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: #3182ce;
    text-decoration: none;
    font-weight: 600;
}

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

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

    .hero-image-overlap {
        position: relative;
        width: 100%;
        height: 400px;
        top: 0;
    }

    .hero-image-overlap img {
        border-radius: 12px;
    }

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

    .problem-amplify {
        flex-direction: column;
    }

    .insight-split {
        flex-direction: column;
    }

    .story-content {
        flex-direction: column;
    }

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

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

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

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        display: none;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        padding: 0.75rem 2rem;
    }

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

    .service-card-large,
    .service-card-medium,
    .service-card-small {
        flex: 1 1 100%;
    }

    .benefit-large,
    .benefit-medium,
    .benefit-small {
        flex: 1 1 100%;
    }

    .value-card {
        flex: 1 1 100%;
    }

    .info-card {
        flex: 1 1 100%;
    }

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

    .form-container-offset {
        margin-left: 0;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .footer-main {
        flex-direction: column;
    }
}