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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

.ad-disclosure {
    background: #f8f9fa;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #e9ecef;
}

.main-nav {
    background: #ffffff;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
}

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

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

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

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

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

.hero-left {
    flex: 1;
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-left p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 35px;
    opacity: 0.95;
}

.hero-right {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background: #ffffff;
    color: #667eea;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s;
}

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

.features-split {
    padding: 90px 30px;
    background: #f8f9fa;
}

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

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

.split-image {
    flex: 1;
    background: #e9ecef;
    border-radius: 12px;
    overflow: hidden;
}

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

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 25px;
    color: #2c3e50;
}

.split-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #495057;
}

.approach-section {
    padding: 90px 30px;
    background: #ffffff;
}

.approach-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 70px;
}

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 25px;
    color: #2c3e50;
}

.approach-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #495057;
}

.benefits-list {
    list-style: none;
    margin-top: 30px;
}

.benefits-list li {
    font-size: 17px;
    line-height: 1.8;
    padding: 12px 0 12px 35px;
    position: relative;
    color: #495057;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: 700;
    font-size: 20px;
}

.approach-image {
    flex: 1;
    background: #e9ecef;
    border-radius: 12px;
    overflow: hidden;
}

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

.services-preview {
    padding: 90px 30px;
    background: #f8f9fa;
}

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

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

.service-card {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    padding: 40px 35px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

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

.service-card p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #495057;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #667eea;
}

.more-services-link {
    text-align: center;
    margin-top: 50px;
}

.more-services-link a {
    color: #667eea;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: color 0.3s;
}

.more-services-link a:hover {
    color: #764ba2;
}

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

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

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

.testimonial-author {
    font-size: 16px;
    opacity: 0.9;
}

.form-section {
    padding: 90px 30px;
    background: #ffffff;
}

.form-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 70px;
    align-items: flex-start;
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 25px;
    color: #2c3e50;
}

.form-intro p {
    font-size: 17px;
    line-height: 1.8;
    color: #495057;
}

.form-container {
    flex: 1;
    background: #f8f9fa;
    padding: 45px;
    border-radius: 12px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 15px;
}

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

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

.btn-submit {
    width: 100%;
    background: #667eea;
    color: #ffffff;
    padding: 16px;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.trust-section {
    padding: 90px 30px;
    background: #f8f9fa;
}

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

.trust-content img {
    flex: 1;
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    background: #e9ecef;
}

.trust-text {
    flex: 1;
}

.trust-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.trust-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #495057;
}

.main-footer {
    background: #2c3e50;
    color: #ffffff;
    padding: 60px 30px 30px;
}

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

.footer-column {
    flex: 1;
}

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

.footer-column p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.8;
}

.footer-column a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    margin-bottom: 12px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-column a:hover {
    opacity: 1;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    opacity: 0.7;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 25px 30px;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.cookie-banner.hidden {
    display: none;
}

.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-content a {
    color: #ffffff;
    text-decoration: underline;
}

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

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

.btn-accept {
    background: #667eea;
    color: #ffffff;
}

.btn-accept:hover {
    background: #764ba2;
}

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

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

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

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

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

.about-intro-split {
    padding: 90px 30px;
    background: #ffffff;
}

.philosophy-section {
    padding: 90px 30px;
    background: #f8f9fa;
}

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

.philosophy-content h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.philosophy-grid {
    display: flex;
    gap: 35px;
    flex-wrap: wrap;
}

.philosophy-item {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
}

.philosophy-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #667eea;
}

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

.team-section {
    padding: 90px 30px;
    background: #ffffff;
}

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

.team-intro {
    text-align: center;
    margin-bottom: 50px;
}

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

.team-intro p {
    font-size: 18px;
    line-height: 1.7;
    color: #495057;
    max-width: 800px;
    margin: 0 auto;
}

.team-image {
    border-radius: 12px;
    overflow: hidden;
    background: #e9ecef;
}

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

.values-split {
    padding: 90px 30px;
    background: #f8f9fa;
}

.cta-section {
    padding: 80px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 35px;
    opacity: 0.9;
}

.services-detailed {
    padding: 50px 30px;
    background: #ffffff;
}

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

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

.service-info {
    flex: 1;
}

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

.service-info p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #495057;
}

.service-info ul {
    list-style: none;
    margin-bottom: 30px;
}

.service-info ul li {
    font-size: 16px;
    line-height: 1.8;
    padding: 10px 0 10px 30px;
    position: relative;
    color: #495057;
}

.service-info ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: 700;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 25px;
}

.btn-service {
    display: inline-block;
    background: #667eea;
    color: #ffffff;
    padding: 14px 35px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-service:hover {
    background: #764ba2;
    transform: translateY(-2px);
}

.service-visual {
    flex: 1;
    background: #e9ecef;
    border-radius: 12px;
    overflow: hidden;
}

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

.process-section {
    padding: 90px 30px;
    background: #f8f9fa;
}

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

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

.process-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #667eea;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

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

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

.contact-section {
    padding: 90px 30px;
    background: #ffffff;
}

.contact-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 70px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

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

.contact-info p {
    font-size: 17px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 35px;
}

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

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

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #667eea;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 0;
}

.contact-note {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.contact-note p {
    font-size: 15px;
    margin-bottom: 0;
}

.contact-image {
    flex: 1;
    background: #e9ecef;
    border-radius: 12px;
    overflow: hidden;
}

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

.map-section {
    padding: 50px 30px 90px;
    background: #f8f9fa;
}

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

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

.map-placeholder {
    background: #e9ecef;
    height: 400px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder p {
    font-size: 18px;
    color: #6c757d;
}

.thanks-section {
    padding: 90px 30px;
    background: #ffffff;
    min-height: 60vh;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #667eea;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 30px;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-message {
    font-size: 18px;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 40px;
}

.thanks-details {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 50px;
    font-size: 16px;
    color: #667eea;
    font-weight: 600;
}

.thanks-next h2 {
    font-size: 28px;
    margin-bottom: 35px;
    color: #2c3e50;
}

.next-steps {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    text-align: left;
}

.next-step {
    flex: 1;
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
}

.step-icon {
    width: 40px;
    height: 40px;
    background: #667eea;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.next-step p {
    font-size: 15px;
    line-height: 1.6;
    color: #495057;
}

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

.btn-primary {
    display: inline-block;
    background: #667eea;
    color: #ffffff;
    padding: 14px 35px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

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

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #667eea;
    padding: 14px 35px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #667eea;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #667eea;
    color: #ffffff;
}

.legal-page {
    padding: 60px 30px 90px;
    background: #ffffff;
}

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

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

.legal-updated {
    font-size: 15px;
    color: #6c757d;
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #495057;
}

.legal-container h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #495057;
}

.legal-container p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #495057;
}

.legal-container ul {
    margin-bottom: 20px;
    padding-left: 25px;
}

.legal-container ul li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #495057;
}

.legal-container a {
    color: #667eea;
    text-decoration: underline;
}

.legal-container a:hover {
    color: #764ba2;
}

@media (max-width: 768px) {
    .hero-content,
    .split-container,
    .approach-container,
    .services-grid,
    .form-split,
    .trust-content,
    .footer-content,
    .cookie-content,
    .service-detail-split,
    .process-steps,
    .contact-split,
    .next-steps {
        flex-direction: column;
    }

    .hero-left h1,
    .page-header h1 {
        font-size: 36px;
    }

    .split-text h2,
    .approach-text h2,
    .service-info h2,
    .contact-info h2 {
        font-size: 28px;
    }

    .services-preview h2,
    .philosophy-content h2,
    .team-intro h2,
    .cta-content h2,
    .process-section h2,
    .map-section h2,
    .thanks-container h1,
    .legal-container h1 {
        font-size: 32px;
    }

    .nav-links {
        gap: 20px;
    }
}