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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    display: none;
}

.cookie-banner.active {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

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

.cookie-content a {
    color: #4a9eff;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

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

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

.btn-reject:hover {
    background: #333333;
}

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

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

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

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

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

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

.ad-notice {
    font-size: 13px;
    color: #7f8c8d;
    padding: 6px 14px;
    background: #ecf0f1;
    border-radius: 3px;
}

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

.hero-left {
    flex: 1;
    padding: 100px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fafbfc;
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 28px;
    color: #1a1a1a;
}

.hero-subtext {
    font-size: 19px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 40px;
    max-width: 560px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background: #3498db;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.hero-right {
    flex: 1;
    overflow: hidden;
}

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

.intro-section {
    padding: 90px 40px;
    background: #ffffff;
}

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

.intro-text h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.intro-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 22px;
    color: #4a5568;
}

.benefits-split {
    display: flex;
    background: #f8f9fa;
}

.split-image {
    flex: 1;
    overflow: hidden;
}

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

.split-content {
    flex: 1;
    padding: 80px 60px;
}

.split-content h2 {
    font-size: 40px;
    margin-bottom: 45px;
    color: #1a1a1a;
}

.service-card {
    background: white;
    padding: 30px;
    margin-bottom: 25px;
    border-radius: 6px;
    border-left: 4px solid #3498db;
}

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

.service-card p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 10px;
}

.service-card .price {
    font-size: 20px;
    font-weight: 700;
    color: #27ae60;
    margin-top: 15px;
    margin-bottom: 18px;
}

.select-service {
    padding: 12px 28px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.select-service:hover {
    background: #2980b9;
}

.form-section {
    padding: 80px 40px;
    background: #ecf0f1;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 8px;
}

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

.form-intro {
    font-size: 17px;
    margin-bottom: 35px;
    color: #5a6c7d;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}

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

.btn-submit {
    padding: 16px 40px;
    background: #27ae60;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.trust-section {
    padding: 90px 40px;
    background: #ffffff;
}

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

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

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

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

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

.trust-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
}

.approach-split {
    display: flex;
    background: #f8f9fa;
}

.split-content-left {
    flex: 1;
    padding: 80px 60px;
}

.split-content-left h2 {
    font-size: 40px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.split-content-left p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 22px;
    color: #4a5568;
}

.citation {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.citation:hover {
    text-decoration: underline;
}

.link-secondary {
    display: inline-block;
    margin-top: 20px;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
}

.link-secondary:hover {
    text-decoration: underline;
}

.split-image-right {
    flex: 1;
    overflow: hidden;
}

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

.disclaimer-section {
    padding: 50px 40px;
    background: #fff3cd;
    border-top: 3px solid #ffc107;
    border-bottom: 3px solid #ffc107;
}

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

.disclaimer-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #664d03;
}

.main-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 40px 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;
    color: #ffffff;
}

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

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

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

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

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

.reference-item {
    font-size: 13px;
    line-height: 1.6;
}

.reference-item a {
    color: #3498db;
    text-decoration: none;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
}

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

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

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

.content-section {
    padding: 70px 40px;
    background: #ffffff;
}

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

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

.content-wrapper h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
}

.content-wrapper p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #4a5568;
}

.content-wrapper ul {
    margin-bottom: 20px;
    margin-left: 25px;
}

.content-wrapper ul li {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #4a5568;
}

.team-grid {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.team-member {
    flex: 1;
    background: #f8f9fa;
    padding: 35px;
    border-radius: 6px;
}

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

.team-member .title {
    font-size: 15px;
    color: #7f8c8d;
    margin-bottom: 18px;
}

.team-member p {
    font-size: 15px;
    line-height: 1.7;
    color: #5a6c7d;
}

.contact-info {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 6px;
    margin-top: 40px;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: #2c3e50;
}

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

.contact-item strong {
    display: block;
    font-size: 15px;
    margin-bottom: 6px;
    color: #34495e;
}

.contact-item p {
    font-size: 16px;
    color: #5a6c7d;
    margin: 0;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.thanks-box {
    background: white;
    padding: 60px;
    border-radius: 10px;
    text-align: center;
    max-width: 600px;
}

.thanks-box h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #27ae60;
}

.thanks-box p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 18px;
    color: #4a5568;
}

.thanks-box a {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 32px;
    background: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.thanks-box a:hover {
    background: #2980b9;
}

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

.service-box {
    flex: 1 1 calc(50% - 15px);
    background: #f8f9fa;
    padding: 35px;
    border-radius: 6px;
    min-width: 280px;
}

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

.service-box p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 15px;
}

.service-box .price {
    font-size: 22px;
    font-weight: 700;
    color: #27ae60;
    margin-top: 15px;
}

@media (max-width: 768px) {
    .hero-split,
    .benefits-split,
    .approach-split {
        flex-direction: column;
    }

    .trust-grid,
    .team-grid,
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

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

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

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

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