* {
    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.7;
    color: #333;
    background: #fff;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1200px;
}

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

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #27ae60;
    color: #fff;
}

.btn-accept:hover {
    background: #229954;
}

.btn-reject {
    background: #95a5a6;
    color: #fff;
}

.btn-reject:hover {
    background: #7f8c8d;
}

.header {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.ad-notice {
    font-size: 11px;
    color: #7f8c8d;
    padding: 4px 12px;
    border: 1px solid #bdc3c7;
    border-radius: 3px;
    background: #ecf0f1;
}

.nav {
    display: flex;
    gap: 30px;
}

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

.nav a:hover {
    color: #3498db;
}

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

.hero-section .container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content {
    flex: 1;
}

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

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

.hero-image {
    flex: 1;
}

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

.cta-primary {
    display: inline-block;
    padding: 15px 35px;
    background: #fff;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.cta-primary-large {
    display: inline-block;
    padding: 18px 45px;
    background: #3498db;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.cta-primary-large:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.cta-secondary {
    display: inline-block;
    padding: 12px 28px;
    background: #3498db;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #2980b9;
}

.intro-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.intro-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.intro-section p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
}

.problem-section {
    padding: 100px 0;
}

.split-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-layout-reverse {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-direction: row-reverse;
}

.content-block {
    flex: 1;
}

.content-block h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.content-block h3 {
    font-size: 24px;
    margin: 25px 0 15px;
    color: #34495e;
}

.content-block p {
    font-size: 17px;
    color: #555;
    margin-bottom: 15px;
}

.image-block {
    flex: 1;
}

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

.feature-list {
    list-style: none;
    margin-top: 25px;
}

.feature-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 17px;
    color: #555;
}

.feature-list li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #3498db;
    font-size: 24px;
    line-height: 1;
}

.insight-section {
    padding: 100px 0;
    background: #ecf0f1;
}

.insight-section h2 {
    font-size: 34px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.insight-section p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
}

.services-preview {
    padding: 100px 0;
}

.services-preview h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.services-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-card p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin: 20px 0;
}

.testimonials-section {
    padding: 100px 0;
    background: #34495e;
    color: #fff;
}

.testimonials-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-layout {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 280px;
    background: rgba(255,255,255,0.1);
    padding: 35px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.testimonial p {
    font-size: 17px;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 15px;
    font-weight: 600;
    opacity: 0.9;
}

.trust-section {
    padding: 100px 0;
}

.form-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.form-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
    text-align: center;
    color: #2c3e50;
}

.form-section > .container-narrow > p {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #34495e;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
}

.contact-form button[type="submit"] {
    width: 100%;
    padding: 15px;
    background: #3498db;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form button[type="submit"]:hover {
    background: #2980b9;
}

.benefits-section {
    padding: 100px 0;
}

.benefits-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    color: #2c3e50;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.benefit-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.benefit-item p {
    font-size: 17px;
    color: #666;
    line-height: 1.7;
}

.final-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

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

.cta-box h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

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

.disclaimer-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.disclaimer {
    font-size: 13px;
    color: #666;
    line-height: 1.8;
    padding: 25px;
    background: #fff;
    border-left: 3px solid #e74c3c;
    border-radius: 4px;
}

.footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 30px;
}

.footer-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
}

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

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

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

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

.footer-column ul li a:hover {
    color: #3498db;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    color: #95a5a6;
    font-size: 14px;
}

.page-header {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-align: center;
}

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

.page-header p {
    font-size: 18px;
    opacity: 0.95;
}

.about-intro {
    padding: 100px 0;
}

.values-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.values-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    color: #2c3e50;
}

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

.value-item {
    flex: 1;
    min-width: 240px;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.value-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.team-section {
    padding: 100px 0;
}

.team-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.section-intro {
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

.experience-blocks {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.experience-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.experience-item p {
    font-size: 17px;
    color: #666;
    line-height: 1.7;
}

.impact-section {
    padding: 100px 0;
    background: #ecf0f1;
}

.philosophy-section {
    padding: 100px 0;
}

.philosophy-section h2 {
    font-size: 34px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.philosophy-section p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
}

.commitment-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.commitment-box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 50px 40px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.commitment-box h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.commitment-box p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.7;
}

.services-detail {
    padding: 80px 0;
}

.service-detail-item {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
    padding-bottom: 100px;
    border-bottom: 1px solid #e0e0e0;
}

.service-detail-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

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

.service-content {
    flex: 1.2;
}

.service-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-content h3 {
    font-size: 20px;
    margin: 25px 0 12px;
    color: #34495e;
}

.service-content p {
    font-size: 17px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.7;
}

.service-content ul {
    margin: 15px 0 20px 20px;
    list-style: disc;
}

.service-content ul li {
    font-size: 16px;
    color: #666;
    margin-bottom: 8px;
    line-height: 1.6;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    margin: 25px 0;
}

.service-image {
    flex: 1;
}

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

.process-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.process-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    color: #2c3e50;
}

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

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

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

.process-step h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.process-step p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.cta-section {
    padding: 100px 0;
}

.contact-info {
    padding: 80px 0;
}

.contact-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-details > p {
    font-size: 17px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.7;
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #34495e;
}

.contact-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.contact-item .note {
    font-size: 14px;
    color: #95a5a6;
    font-style: italic;
    margin-top: 8px;
}

.contact-image {
    flex: 1;
}

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

.location-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.location-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.location-section > .container-narrow > p {
    font-size: 17px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.7;
}

.location-details {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.location-item {
    flex: 1;
    min-width: 220px;
}

.location-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #34495e;
}

.location-item p {
    font-size: 15px;
    color: #666;
}

.faq-section {
    padding: 80px 0;
}

.faq-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

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

.next-steps {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.next-steps-box h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.next-steps-box > p {
    font-size: 17px;
    color: #666;
    margin-bottom: 30px;
}

.steps-list {
    text-align: left;
    margin: 0 0 40px 40px;
    line-height: 2;
}

.steps-list li {
    font-size: 16px;
    color: #555;
    margin-bottom: 12px;
}

.thanks-hero {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: #fff;
    text-align: center;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.thanks-content p {
    font-size: 20px;
    opacity: 0.95;
}

.thanks-details {
    padding: 100px 0;
}

.thanks-details h2 {
    font-size: 34px;
    margin-bottom: 50px;
    text-align: center;
    color: #2c3e50;
}

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

.timeline-item {
    display: flex;
    gap: 25px;
}

.timeline-marker {
    width: 50px;
    height: 50px;
    background: #27ae60;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.timeline-content h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.timeline-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

.preparation-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.preparation-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.preparation-section > .container-narrow > p {
    font-size: 17px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.7;
}

.preparation-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.prep-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.prep-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

.interim-resources {
    padding: 80px 0;
}

.interim-resources h2 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
    color: #2c3e50;
}

.resources-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.resource-card {
    flex: 1;
    min-width: 280px;
    padding: 40px 30px;
    background: #f8f9fa;
    border-radius: 8px;
}

.resource-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.resource-card p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.link-arrow {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.link-arrow:hover {
    color: #2980b9;
}

.link-arrow:after {
    content: ' →';
}

.urgent-note {
    padding: 80px 0;
    background: #fff3cd;
}

.note-box {
    max-width: 700px;
    margin: 0 auto;
    padding: 30px;
    background: #fff;
    border-left: 4px solid #f39c12;
    border-radius: 4px;
}

.note-box h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.note-box p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

.legal-page {
    padding: 80px 0;
}

.legal-page h1 {
    font-size: 38px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.last-updated {
    font-size: 14px;
    color: #95a5a6;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: #34495e;
}

.legal-page p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-page ul,
.legal-page ol {
    margin: 15px 0 20px 30px;
}

.legal-page ul li,
.legal-page ol li {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #ddd;
}

.cookie-table th {
    background: #34495e;
    color: #fff;
    font-weight: 600;
}

.cookie-table td {
    font-size: 15px;
    color: #555;
}

@media (max-width: 768px) {
    .hero-section .container,
    .split-layout,
    .split-layout-reverse,
    .contact-layout {
        flex-direction: column;
    }

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

    .nav {
        flex-wrap: wrap;
        gap: 15px;
    }

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

    .page-header h1 {
        font-size: 32px;
    }

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

    .testimonials-layout {
        flex-direction: column;
    }

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

    .cookie-content {
        flex-direction: column;
        gap: 15px;
    }

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