* {
    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-color: #ffffff;
}

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

.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;
    font-size: 14px;
}

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

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

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

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

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

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

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.nav-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    font-style: italic;
    padding: 4px 12px;
    background-color: #ecf0f1;
    border-radius: 3px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

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

.nav-menu a:hover {
    color: #27ae60;
}

.hero-section {
    display: flex;
    align-items: center;
    min-height: 600px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 20px;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-image {
    display: none;
}

.cta-primary {
    display: inline-block;
    background-color: #27ae60;
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #229954;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(39, 174, 96, 0.3);
}

.intro-section {
    background-color: #f8f9fa;
    padding: 80px 20px;
}

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

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

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

.services-preview {
    background-color: #ffffff;
    padding: 100px 20px;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card {
    display: flex;
    align-items: center;
    gap: 40px;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

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

.service-image {
    flex: 1;
    min-width: 400px;
    background-color: #ecf0f1;
}

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

.service-info {
    flex: 1;
    padding: 40px;
}

.service-info h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.service-info p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #34495e;
}

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

.btn-select {
    background-color: #3498db;
    color: #ffffff;
    border: none;
    padding: 12px 28px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.form-section {
    background-color: #ecf0f1;
    padding: 100px 20px;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

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

.form-intro {
    text-align: center;
    font-size: 16px;
    margin-bottom: 40px;
    color: #34495e;
}

.contact-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

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

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

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

.btn-submit {
    width: 100%;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    padding: 16px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.benefits-section {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 100px 20px;
}

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

.benefits-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.benefit-item {
    flex: 1;
    min-width: 250px;
    max-width: 450px;
}

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

.benefit-item p {
    font-size: 16px;
    line-height: 1.7;
}

.cta-secondary-section {
    background-color: #3498db;
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-secondary {
    display: inline-block;
    background-color: #ffffff;
    color: #3498db;
    padding: 14px 36px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #ecf0f1;
    transform: translateY(-2px);
}

.main-footer {
    background-color: #1a1a1a;
    color: #bdc3c7;
    padding: 60px 20px 20px;
}

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

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

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

.footer-column p {
    font-size: 14px;
    line-height: 1.7;
}

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

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

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

.footer-column a:hover {
    color: #27ae60;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 20px;
    background-color: #2c2c2c;
    border-radius: 6px;
    font-size: 13px;
    line-height: 1.7;
}

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

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

.thanks-container {
    background-color: #ffffff;
    padding: 60px 40px;
    border-radius: 10px;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

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

.thanks-container p {
    font-size: 18px;
    margin-bottom: 16px;
    color: #34495e;
}

.thanks-service {
    font-weight: 700;
    color: #3498db;
}

.btn-home {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 30px;
    transition: all 0.3s ease;
}

.btn-home:hover {
    background-color: #2980b9;
}

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

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

.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

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

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

.page-content p {
    font-size: 16px;
    margin-bottom: 16px;
    line-height: 1.8;
    color: #34495e;
}

.page-content ul {
    margin-bottom: 20px;
    margin-left: 30px;
}

.page-content ul li {
    margin-bottom: 10px;
    line-height: 1.7;
}

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

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

.contact-info p {
    font-size: 16px;
    margin-bottom: 12px;
    color: #34495e;
}

.contact-info strong {
    color: #2c3e50;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-menu {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

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

    .hero-subtitle {
        font-size: 16px;
    }

    .service-card,
    .service-card:nth-child(even) {
        flex-direction: column;
    }

    .service-image {
        min-width: 100%;
    }

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

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

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