* {
    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;
}

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

.header {
    background: #1a1a2e;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.nav-main {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-main a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-main a:hover {
    color: #4a90e2;
}

.ad-label {
    font-size: 0.75rem;
    color: #a0a0a0;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    margin-left: 1rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a2e;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    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 {
    flex: 1;
    margin: 0;
}

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

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.btn-accept {
    background: #4a90e2;
    color: #ffffff;
}

.btn-accept:hover {
    background: #357abd;
}

.btn-reject {
    background: #6c757d;
    color: #ffffff;
}

.btn-reject:hover {
    background: #545b62;
}

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: center;
}

.hero-left {
    flex: 1;
    padding: 4rem 5rem;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-left h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #e0e0e0;
    line-height: 1.7;
}

.hero-right {
    flex: 1;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #4a90e2;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-primary:hover {
    background: #357abd;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: #4a90e2;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid #4a90e2;
    transition: all 0.3s;
    cursor: pointer;
    font-size: 1rem;
}

.cta-secondary:hover {
    background: #4a90e2;
    color: #ffffff;
}

.intro-section {
    display: flex;
    align-items: stretch;
}

.intro-left {
    flex: 1;
    background: #ecf0f1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-right {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-right h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.intro-right p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.problem-section {
    background: #f8f9fa;
    padding: 5rem 3rem;
}

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

.problem-content h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a2e;
}

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

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

.problem-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.problem-card p {
    color: #555;
    line-height: 1.7;
}

.services-preview {
    display: flex;
    align-items: center;
    min-height: 500px;
}

.services-left {
    flex: 1;
    padding: 4rem;
    background: #16213e;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.services-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.services-left p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.services-right {
    flex: 1;
    padding: 4rem;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-quick {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 6px;
    border-left: 4px solid #4a90e2;
}

.service-quick h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.service-price {
    font-size: 1.5rem;
    color: #4a90e2;
    font-weight: 700;
}

.trust-section {
    padding: 5rem 3rem;
    background: #ffffff;
}

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

.trust-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #1a1a2e;
}

.trust-split {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.trust-left {
    flex: 1;
}

.trust-left p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #555;
}

.trust-right {
    flex: 1;
}

.trust-right img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.testimonials-section {
    background: #f8f9fa;
    padding: 5rem 3rem;
}

.testimonials-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a2e;
}

.testimonials-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

.testimonial {
    flex: 1;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #2c3e50;
}

.testimonial-author {
    font-weight: 600;
    color: #4a90e2;
}

.how-it-works {
    display: flex;
    align-items: stretch;
}

.how-left {
    flex: 1;
    background: #ecf0f1;
}

.how-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.how-right {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.how-right h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #1a1a2e;
}

.step {
    margin-bottom: 2rem;
}

.step h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.step p {
    color: #555;
    line-height: 1.7;
}

.cta-inline-section {
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    padding: 4rem 3rem;
    text-align: center;
}

.cta-inline-content {
    max-width: 800px;
    margin: 0 auto;
    color: #ffffff;
}

.cta-inline-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-inline-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.form-section {
    display: flex;
    min-height: 600px;
}

.form-left {
    flex: 1;
    background: #1a1a2e;
    color: #ffffff;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.form-left p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.form-right {
    flex: 1;
    padding: 4rem;
    background: #f8f9fa;
    display: flex;
    align-items: center;
}

.contact-form {
    width: 100%;
    max-width: 500px;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #4a90e2;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: #4a90e2;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #357abd;
}

.disclaimer-section {
    background: #fff3cd;
    padding: 3rem;
}

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

.disclaimer-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #856404;
}

.disclaimer-content p {
    color: #856404;
    line-height: 1.8;
}

.footer {
    background: #1a1a2e;
    color: #e0e0e0;
    padding: 3rem 3rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-col p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-col a {
    display: block;
    color: #a0a0a0;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #4a90e2;
}

.page-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 4rem 3rem;
    text-align: center;
    color: #ffffff;
}

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

.about-intro-split {
    display: flex;
    align-items: stretch;
}

.about-intro-left {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-intro-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.about-intro-left p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #555;
}

.about-intro-right {
    flex: 1;
    background: #ecf0f1;
}

.about-intro-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.values-section {
    background: #f8f9fa;
    padding: 5rem 3rem;
}

.values-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a2e;
}

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

.value-item {
    flex: 1 1 calc(50% - 1rem);
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.value-item p {
    color: #555;
    line-height: 1.7;
}

.experience-split {
    display: flex;
    align-items: stretch;
}

.experience-left {
    flex: 1;
    background: #ecf0f1;
}

.experience-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-right {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.experience-right h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.experience-right p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #555;
}

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

.team-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a2e;
}

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

.team-text {
    flex: 1;
}

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

.team-image {
    flex: 1;
}

.team-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.mission-section {
    background: #f8f9fa;
    padding: 5rem 3rem;
}

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

.mission-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a2e;
}

.mission-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
}

.cta-about {
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    padding: 4rem 3rem;
    text-align: center;
}

.cta-about-content {
    max-width: 800px;
    margin: 0 auto;
    color: #ffffff;
}

.cta-about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-about-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

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

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

.services-intro-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.service-detail-split {
    display: flex;
    align-items: stretch;
    min-height: 400px;
}

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

.service-detail-left {
    flex: 1.5;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
}

.service-detail-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.service-detail-left p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #555;
}

.service-includes {
    list-style: none;
    padding: 0;
}

.service-includes li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

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

.service-detail-right {
    flex: 1;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.price-box {
    background: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 100%;
    max-width: 350px;
}

.price-amount {
    font-size: 3rem;
    color: #4a90e2;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.price-note {
    color: #777;
    margin-bottom: 2rem;
}

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

.cta-service:hover {
    background: #357abd;
    transform: translateY(-2px);
}

.services-cta {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 4rem 3rem;
    text-align: center;
}

.services-cta-content {
    max-width: 800px;
    margin: 0 auto;
    color: #ffffff;
}

.services-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.services-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.contact-split {
    display: flex;
    align-items: stretch;
}

.contact-left {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.contact-left p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    color: #555;
}

.contact-info-block {
    margin-bottom: 2.5rem;
}

.contact-info-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.contact-info-block p {
    margin-bottom: 0.5rem;
}

.contact-note {
    font-size: 0.95rem;
    color: #777;
    font-style: italic;
}

.contact-right {
    flex: 1;
    background: #ecf0f1;
}

.contact-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-info-section {
    background: #f8f9fa;
    padding: 4rem 3rem;
}

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

.contact-info-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.contact-info-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #555;
}

.contact-cta {
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    padding: 4rem 3rem;
    text-align: center;
}

.contact-cta-content {
    max-width: 800px;
    margin: 0 auto;
    color: #ffffff;
}

.contact-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.thanks-section {
    background: #f8f9fa;
    padding: 5rem 3rem;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-content h1 {
    font-size: 3rem;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.thanks-info {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: left;
}

.thanks-info h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.thanks-info p {
    line-height: 1.8;
    color: #555;
}

.thanks-service {
    background: #e7f3ff;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid #4a90e2;
}

.thanks-service h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.thanks-service p {
    color: #555;
    font-weight: 600;
}

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

.thanks-additional {
    background: #ffffff;
    padding: 4rem 3rem;
}

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

.thanks-additional-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.thanks-additional-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.legal-content {
    background: #ffffff;
    padding: 4rem 3rem;
}

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

.legal-text h2 {
    font-size: 2rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.legal-text h3 {
    font-size: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.legal-text h4 {
    font-size: 1.2rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.legal-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #555;
}

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

.legal-text li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
    color: #555;
}

.legal-text a {
    color: #4a90e2;
    text-decoration: none;
}

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

@media (max-width: 768px) {
    .nav-main {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }

    .ad-label {
        margin-left: 0;
        margin-top: 0.5rem;
    }

    .hero-split,
    .intro-section,
    .services-preview,
    .trust-split,
    .testimonials-split,
    .how-it-works,
    .form-section,
    .about-intro-split,
    .experience-split,
    .team-split,
    .service-detail-split,
    .contact-split {
        flex-direction: column;
    }

    .hero-left,
    .intro-right,
    .services-left,
    .services-right,
    .form-left,
    .form-right,
    .about-intro-left,
    .experience-right,
    .service-detail-left,
    .contact-left {
        padding: 2rem;
    }

    .hero-left h1,
    .page-header h1 {
        font-size: 2rem;
    }

    .intro-right h2,
    .services-left h2,
    .trust-content h2,
    .testimonials-section h2,
    .how-right h2,
    .about-intro-left h2,
    .experience-right h2,
    .team-section h2,
    .mission-content h2,
    .service-detail-left h2,
    .contact-left h2,
    .thanks-content h1 {
        font-size: 1.8rem;
    }

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

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }
}