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

:root {
    --primary-color: #4A90E2;
    --secondary-color: #2C5F8D;
    --accent-color: #F5A623;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #4CAF50;
    --error-color: #e74c3c;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.main-nav {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

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

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
}

.btn-sticky {
    background-color: var(--accent-color);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-block;
}

.btn-sticky:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

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

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

.hero-section h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    line-height: 1.5;
    opacity: 0.95;
}

.hero-image {
    margin-top: 3rem;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.btn-primary {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s, transform 0.2s;
}

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

.btn-primary-large {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 0.9rem 2rem;
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

.story-section {
    padding: 5rem 0;
    background-color: var(--bg-white);
}

.story-section h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.story-section p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: var(--text-medium);
    line-height: 1.8;
}

.inline-image {
    margin: 3rem 0;
}

.inline-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.problem-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

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

.content-left,
.content-right {
    flex: 1;
}

.content-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.content-left p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-medium);
}

.problem-list {
    list-style: none;
    margin-top: 2rem;
}

.problem-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    color: var(--text-medium);
}

.problem-list li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: var(--error-color);
    font-weight: bold;
}

.content-right img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.insight-section {
    padding: 5rem 0;
    background-color: var(--bg-white);
}

.insight-section h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    text-align: center;
}

.insight-section > .narrow-content > p {
    font-size: 1.15rem;
    margin-bottom: 3rem;
    color: var(--text-medium);
    text-align: center;
}

.insight-cards {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.insight-card {
    flex: 1;
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.insight-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.insight-card p {
    color: var(--text-medium);
}

.insight-section .btn-secondary {
    display: block;
    width: fit-content;
    margin: 0 auto;
}

.trust-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: white;
}

.trust-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 1.1rem;
    opacity: 0.9;
}

.testimonial-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.testimonial {
    background-color: white;
    padding: 3rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary-color);
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-medium);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-dark);
}

.benefits-section {
    padding: 5rem 0;
    background-color: var(--bg-white);
}

.benefits-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.benefit-card {
    flex: 1 1 calc(50% - 1rem);
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.benefit-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

.services-reveal {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.services-reveal h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 3rem;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-item {
    background-color: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.service-item h3 {
    font-size: 1.7rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-item p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    flex-grow: 1;
    line-height: 1.7;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

.btn-select {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    width: fit-content;
}

.btn-select:hover {
    background-color: var(--secondary-color);
}

.urgency-section {
    padding: 4rem 0;
    background-color: #fff3e0;
    border-top: 3px solid var(--accent-color);
    border-bottom: 3px solid var(--accent-color);
}

.urgency-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    text-align: center;
}

.urgency-section p {
    font-size: 1.15rem;
    color: var(--text-medium);
    text-align: center;
    margin-bottom: 1rem;
}

.urgency-highlight {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin-top: 1.5rem;
}

.form-section {
    padding: 5rem 0;
    background-color: var(--bg-white);
}

.form-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.form-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 3rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    background-color: var(--primary-color);
    color: white;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: var(--secondary-color);
}

.final-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.final-cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.final-cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.main-footer {
    background-color: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section {
    flex: 1;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    color: #cccccc;
    line-height: 1.7;
}

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

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

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

.footer-section ul li a:hover {
    color: var(--primary-color);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);
    color: white;
    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;
    gap: 2rem;
}

.cookie-content p {
    margin: 0;
    flex: 1;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.btn-accept {
    background-color: var(--success-color);
    color: white;
}

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

.btn-accept:hover,
.btn-reject:hover {
    opacity: 0.8;
}

.page-header {
    padding: 4rem 0 2rem;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: white;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.header-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.about-content,
.services-detail,
.contact-content,
.legal-content {
    padding: 4rem 0;
}

.about-intro {
    margin-bottom: 4rem;
}

.about-intro h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.about-intro p {
    font-size: 1.15rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

.values-section h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    text-align: center;
}

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

.value-item {
    flex: 1 1 calc(50% - 1rem);
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.value-item p {
    color: var(--text-medium);
    line-height: 1.7;
}

.story-section h2,
.team-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.story-section p,
.team-section p {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.cta-box {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: white;
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    margin-top: 3rem;
}

.cta-box h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.services-intro {
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-medium);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.service-detail-item {
    background-color: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
}

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--bg-light);
    padding-bottom: 1rem;
}

.service-detail-header h2 {
    font-size: 1.8rem;
    color: var(--text-dark);
}

.price-tag {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.service-detail-content p {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-detail-content h4 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
    color: var(--text-dark);
}

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

.service-detail-content ul li {
    color: var(--text-medium);
    margin-bottom: 0.7rem;
    line-height: 1.7;
    padding-left: 1.5rem;
    position: relative;
}

.service-detail-content ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.guarantee-box {
    background-color: #e8f5e9;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--success-color);
    margin: 3rem 0;
}

.guarantee-box h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.guarantee-box p {
    color: var(--text-medium);
    line-height: 1.7;
}

.contact-grid {
    display: flex;
    gap: 4rem;
    margin-bottom: 4rem;
}

.contact-info,
.contact-map {
    flex: 1;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    color: var(--text-dark);
}

.contact-item p {
    color: var(--text-medium);
    line-height: 1.7;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-note {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.contact-note p {
    color: var(--text-medium);
    line-height: 1.7;
}

.map-placeholder img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.faq-section {
    margin-top: 4rem;
}

.faq-section h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    color: var(--text-dark);
}

.faq-item p {
    color: var(--text-medium);
    line-height: 1.7;
}

.thanks-section {
    padding: 5rem 0;
}

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

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

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.thanks-message {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-confirmation {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.service-confirmation p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 0;
}

.next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.steps-grid {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.step-item {
    flex: 1;
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    color: var(--text-dark);
}

.step-item p {
    color: var(--text-medium);
    line-height: 1.7;
}

.thanks-info {
    background-color: #fff3e0;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.thanks-info h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.thanks-info p {
    color: var(--text-medium);
    line-height: 1.7;
}

.thanks-info a {
    color: var(--primary-color);
    text-decoration: none;
}

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

.thanks-cta {
    margin-top: 3rem;
}

.thanks-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.thanks-cta p {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.thanks-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.legal-text h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.legal-text h4 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.7rem;
    color: var(--text-dark);
}

.legal-text p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-text ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-text ul li {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .split-content {
        flex-direction: column;
        gap: 2rem;
    }

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

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

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

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .sticky-cta {
        bottom: 10px;
        right: 10px;
        left: 10px;
    }

    .btn-sticky {
        display: block;
        text-align: center;
    }

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

    .service-detail-header {
        flex-direction: column;
        align-items: flex-start;
    }

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

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

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

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

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

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .hero-section h1 {
        font-size: 1.7rem;
    }

    .story-section h2,
    .insight-section h2,
    .benefits-section h2,
    .services-reveal h2 {
        font-size: 1.8rem;
    }
}