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

:root {
    --primary-color: #2c5f8d;
    --secondary-color: #e8925c;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --background-light: #f8f9fa;
    --background-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --danger-color: #dc3545;
}

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

.ad-notice {
    background: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #ffeeba;
}

.main-nav {
    background: var(--background-white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

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

.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);
}

.hero-full {
    position: relative;
    height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1a1a;
}

.hero-full img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 95, 141, 0.7), rgba(232, 146, 92, 0.5));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    line-height: 1.7;
    opacity: 0.95;
}

section {
    padding: 80px 20px;
}

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

.story-intro {
    background: var(--background-light);
}

.story-intro h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.story-intro p {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.8;
}

.insight-block {
    background: var(--background-white);
}

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

.insight-text {
    flex: 1;
}

.insight-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.insight-text p {
    font-size: 17px;
    margin-bottom: 18px;
    line-height: 1.7;
    color: var(--text-light);
}

.insight-image {
    flex: 1;
    background: var(--background-light);
}

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

.problem-amplification {
    background: linear-gradient(135deg, #2c5f8d, #1e4368);
    color: white;
}

.full-width-content {
    max-width: 1200px;
    margin: 0 auto;
}

.full-width-content h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 50px;
}

.cost-blocks {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.cost-item {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
}

.cost-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.cost-item h4 {
    font-size: 22px;
    margin-bottom: 15px;
}

.cost-item p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
}

.solution-reveal {
    background: var(--background-light);
}

.solution-reveal h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.solution-reveal p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-light);
}

.benefits-visual {
    background: var(--background-white);
    padding: 100px 20px;
}

.benefit-row {
    max-width: 1200px;
    margin: 0 auto 80px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.benefit-row:last-child {
    margin-bottom: 0;
}

.benefit-row.reverse {
    flex-direction: row-reverse;
}

.benefit-image {
    flex: 1;
    background: var(--background-light);
}

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

.benefit-text {
    flex: 1;
}

.benefit-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.benefit-text p {
    font-size: 17px;
    margin-bottom: 18px;
    line-height: 1.7;
    color: var(--text-light);
}

.trust-signals {
    background: var(--background-light);
}

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

.testimonial {
    flex: 1;
    background: var(--background-white);
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.testimonial p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial cite {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
    font-style: normal;
}

.services-showcase {
    background: var(--background-white);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
}

.service-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(50% - 15px);
    background: var(--background-white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

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

.service-card.featured {
    border-color: var(--secondary-color);
    box-shadow: 0 4px 16px rgba(232, 146, 92, 0.2);
}

.service-card .badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    z-index: 2;
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background: var(--background-light);
}

.service-card h3 {
    font-size: 24px;
    margin: 25px 25px 15px;
    color: var(--primary-color);
}

.service-card p {
    font-size: 16px;
    margin: 0 25px 20px;
    color: var(--text-light);
    line-height: 1.6;
}

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0 25px 20px;
}

.cta-button {
    display: block;
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    padding: 14px 28px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    text-align: center;
}

.cta-button:hover {
    background: #1e4368;
}

.form-section {
    background: var(--background-light);
}

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

.form-container h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--primary-color);
    text-align: center;
}

.form-intro {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 35px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    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);
}

.submit-button {
    width: 100%;
    padding: 16px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-button:hover {
    background: #1e4368;
}

.final-cta {
    background: var(--primary-color);
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-link {
    display: inline-block;
    padding: 16px 40px;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-link:hover {
    background: #d47a48;
}

.disclaimer-section {
    background: #fff9f0;
    padding: 40px 20px;
}

.disclaimer-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background: white;
    border-left: 4px solid var(--secondary-color);
    border-radius: 4px;
}

.disclaimer-box p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-light);
}

.main-footer {
    background: #1a1a1a;
    color: white;
    padding: 50px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.footer-section p,
.footer-section li {
    font-size: 14px;
    line-height: 1.8;
    opacity: 0.85;
}

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

.footer-section a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    color: white;
    padding: 25px 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    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: 30px;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

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

.cookie-btn.reject {
    background: var(--background-light);
    color: var(--text-dark);
}

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

.page-header {
    background: linear-gradient(135deg, var(--primary-color), #1e4368);
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 20px;
    opacity: 0.9;
}

.about-content {
    background: var(--background-white);
}

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

.about-story,
.about-mission,
.about-values,
.about-approach {
    margin-bottom: 60px;
}

.about-story h2,
.about-mission h2,
.about-values h2,
.about-approach h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.about-story p,
.about-mission p,
.about-approach p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 18px;
}

.about-mission img {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
    border-radius: 8px;
    object-fit: cover;
    background: var(--background-light);
}

.values-grid {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.value-item {
    flex: 1;
    background: var(--background-light);
    padding: 30px;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.value-item p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

.services-list {
    background: var(--background-white);
}

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

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

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-price {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-detail-content h3 {
    font-size: 20px;
    margin: 25px 0 15px;
    color: var(--text-dark);
}

.service-detail-content ul {
    margin-bottom: 25px;
}

.service-detail-content li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

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

.service-cta {
    display: inline-block;
    padding: 14px 35px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.service-cta:hover {
    background: #1e4368;
}

.service-cta.highlight {
    background: var(--secondary-color);
}

.service-cta.highlight:hover {
    background: #d47a48;
}

.service-detail-image {
    flex: 1;
    background: var(--background-light);
}

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

.featured-service {
    background: #fff9f0;
    padding: 40px;
    border-radius: 12px;
}

.featured-badge {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.services-comparison {
    background: var(--background-light);
    padding: 80px 20px;
}

.services-comparison h2 {
    text-align: center;
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.comparison-table {
    max-width: 1000px;
    margin: 0 auto;
    overflow-x: auto;
}

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

.comparison-table th,
.comparison-table td {
    padding: 18px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
}

.comparison-table .price-row td {
    background: var(--background-light);
    font-size: 18px;
}

.services-faq {
    background: var(--background-white);
    padding: 80px 20px;
}

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

.faq-container h2 {
    text-align: center;
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 40px;
}

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

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.contact-content {
    background: var(--background-white);
}

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

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

.contact-item h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.contact-map {
    flex: 1;
    background: var(--background-light);
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.contact-additional {
    background: var(--background-light);
    padding: 80px 20px;
}

.contact-additional h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-additional p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 18px;
}

.contact-reasons {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.reason-item {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 8px;
}

.reason-item h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.reason-item p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

.thanks-section {
    background: var(--background-light);
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 700px;
    background: white;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--success-color);
    color: white;
    font-size: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 40px;
}

.thanks-info h2 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.thanks-steps {
    text-align: left;
    margin-bottom: 30px;
}

.thanks-steps li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 10px;
}

.thanks-note {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 35px;
}

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

.btn-primary,
.btn-secondary {
    padding: 14px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

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

.btn-primary:hover {
    background: #1e4368;
}

.btn-secondary {
    background: var(--background-light);
    color: var(--text-dark);
}

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

.legal-page {
    background: var(--background-white);
}

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

.legal-content h1 {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.updated {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 26px;
    color: var(--text-dark);
    margin: 40px 0 20px;
}

.legal-content h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin: 30px 0 15px;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 18px;
}

.legal-content ul {
    margin: 20px 0 20px 30px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 10px;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: none;
}

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

@media (max-width: 768px) {
    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .insight-grid,
    .benefit-row,
    .service-detail,
    .contact-grid,
    .footer-content {
        flex-direction: column;
    }

    .cost-blocks,
    .testimonial-container,
    .values-grid,
    .contact-reasons {
        flex-direction: column;
    }

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

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

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

    .cookie-buttons {
        justify-content: center;
    }

    section {
        padding: 50px 20px;
    }
}