* {
    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.6;
    color: #2c3e50;
    background: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: #ffffff;
    padding: 20px;
    display: none;
    z-index: 9999;
    backdrop-filter: blur(10px);
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

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

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

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

.btn-accept:hover {
    background: #229954;
    transform: translateY(-2px);
}

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

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

.main-header {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

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

.ad-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    padding: 6px 12px;
    background: #ecf0f1;
    border-radius: 4px;
    font-weight: 500;
}

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

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

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

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-left {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: white;
    color: #667eea;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    align-self: flex-start;
    transition: all 0.3s ease;
    font-size: 16px;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-right {
    flex: 1;
    background: #34495e;
    overflow: hidden;
}

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

.intro-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.intro-image {
    flex: 1;
    background: #ecf0f1;
    overflow: hidden;
}

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

.intro-text {
    flex: 1;
    padding: 80px 60px;
    background: #f8f9fa;
}

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

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

.services-section {
    padding: 100px 40px;
    background: #ffffff;
}

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

.services-header h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.services-header p {
    font-size: 18px;
    color: #7f8c8d;
}

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

.service-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    padding: 40px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

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

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

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

.btn-select {
    padding: 14px 30px;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.btn-select:hover {
    background: #5568d3;
    transform: translateY(-2px);
}

.approach-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.approach-text {
    flex: 1;
    padding: 80px 60px;
    background: #2c3e50;
    color: white;
}

.approach-text h2 {
    font-size: 38px;
    margin-bottom: 30px;
    font-weight: 700;
}

.approach-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.9;
}

.approach-list {
    list-style: none;
}

.approach-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
}

.approach-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

.approach-image {
    flex: 1;
    background: #95a5a6;
    overflow: hidden;
}

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

.contact-form-section {
    padding: 100px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

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

.form-left {
    flex: 1;
    color: white;
}

.form-left h2 {
    font-size: 42px;
    margin-bottom: 25px;
    font-weight: 700;
}

.form-left p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0.95;
}

.form-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.form-right {
    flex: 1;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

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

.selected-service-display {
    padding: 15px;
    background: #f0f4ff;
    border-radius: 6px;
    margin-bottom: 25px;
    color: #2c3e50;
}

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

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

.trust-section {
    padding: 100px 40px;
    background: #f8f9fa;
}

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

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

.stats-split {
    display: flex;
    justify-content: space-around;
    gap: 40px;
}

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

.stat-number {
    font-size: 56px;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 17px;
    color: #555;
}

.disclaimer-section {
    padding: 60px 40px;
    background: #ecf0f1;
}

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

.disclaimer-content p {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    text-align: justify;
}

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

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-section a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #3498db;
}

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

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

.thanks-container {
    max-width: 800px;
    margin: 100px auto;
    padding: 60px 40px;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    color: white;
}

.thanks-container h1 {
    font-size: 48px;
    margin-bottom: 25px;
    font-weight: 800;
}

.thanks-container p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0.95;
}

.thanks-service {
    padding: 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
}

.btn-home {
    display: inline-block;
    padding: 16px 40px;
    background: white;
    color: #667eea;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    transition: all 0.3s ease;
    font-size: 16px;
}

.btn-home:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .approach-split,
    .form-container,
    .footer-content,
    .stats-split {
        flex-direction: column;
    }

    .header-content {
        flex-wrap: wrap;
        gap: 15px;
    }

    .main-nav {
        width: 100%;
        justify-content: center;
    }

    .hero-left h1,
    .services-header h2,
    .trust-content h2,
    .form-left h2 {
        font-size: 32px;
    }

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