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

.hidden {
    display: none !important;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a2e;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.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: 250px;
}

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

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

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

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

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

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

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

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

.brand {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.ad-notice {
    font-size: 11px;
    color: #a8a8b8;
    font-weight: 500;
    padding: 4px 10px;
    background-color: rgba(255,255,255,0.05);
    border-radius: 3px;
}

.nav {
    display: flex;
    gap: 28px;
}

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

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

.hero-stacked {
    width: 100%;
}

.hero-image-bg {
    width: 100%;
    height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26,26,46,0.85), rgba(74,144,226,0.65));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text-container {
    max-width: 900px;
    padding: 40px;
    text-align: center;
    color: #ffffff;
}

.hero-text-container h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    opacity: 0.95;
}

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

.section-dark {
    background-color: #2a3142;
    color: #ffffff;
    padding: 80px 20px;
}

.section-accent {
    background-color: #e8f4f8;
    padding: 60px 20px;
}

.section-image-overlay {
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 100px 20px;
}

.overlay-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
    background-color: rgba(26,26,46,0.85);
    padding: 50px 40px;
    border-radius: 8px;
}

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

.overlay-content p {
    font-size: 18px;
    line-height: 1.8;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow h2,
.container-wide h2 {
    font-size: 36px;
    margin-bottom: 24px;
    font-weight: 700;
}

.container-narrow p,
.container-wide p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.center-text {
    text-align: center;
}

.subtext {
    opacity: 0.8;
    font-size: 16px;
    margin-bottom: 40px;
}

.split-content-reverse {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.split-text {
    flex: 1;
    min-width: 300px;
}

.split-image {
    flex: 1;
    min-width: 300px;
}

.split-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.card-grid-stacked {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.card-feature {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.card-feature:hover {
    transform: translateY(-4px);
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.card-feature h3 {
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 700;
}

.card-feature p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
}

.step-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step-number {
    font-size: 32px;
    font-weight: 800;
    color: #4a90e2;
    min-width: 60px;
}

.step-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 700;
}

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

.services-showcase {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background-color: #1e2538;
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid #4a90e2;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 700;
    color: #ffffff;
}

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

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #4a90e2;
    margin-bottom: 20px;
}

.btn-service {
    padding: 14px 32px;
    background-color: #4a90e2;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.section-form {
    background-color: #ffffff;
    padding: 80px 20px;
}

.contact-form {
    margin-top: 40px;
}

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

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

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

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

.btn-submit {
    padding: 16px 40px;
    background-color: #4a90e2;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #357abd;
    transform: translateY(-2px);
}

.disclaimer-box {
    background-color: #fff8e1;
    border-left: 4px solid #ffc107;
    padding: 24px;
    border-radius: 6px;
}

.disclaimer-box p {
    font-size: 14px;
    line-height: 1.7;
    color: #333;
}

.footer {
    background-color: #1a1a2e;
    color: #ffffff;
    padding: 60px 20px 20px;
}

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

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

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

.footer-section p {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.85;
}

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

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

.footer-section ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    font-size: 13px;
    opacity: 0.7;
}

.thanks-container {
    max-width: 700px;
    margin: 100px auto;
    padding: 60px 40px;
    text-align: center;
    background-color: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #4a90e2;
}

.thanks-container p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 16px;
}

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

.thanks-container .btn-home:hover {
    background-color: #357abd;
}

.contact-page {
    padding: 80px 20px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.contact-item {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #4a90e2;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 700;
}

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

.about-page {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.about-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 8px;
    margin: 40px auto;
    display: block;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.team-section {
    margin-top: 60px;
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.team-member h3 {
    font-size: 22px;
    margin-bottom: 8px;
    font-weight: 700;
}

.team-member .role {
    font-size: 15px;
    color: #4a90e2;
    margin-bottom: 12px;
    font-weight: 600;
}

.team-member p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.services-page {
    padding: 80px 20px;
    background-color: #ffffff;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
}

.service-item {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    border-left: 5px solid #4a90e2;
}

.service-item h3 {
    font-size: 26px;
    margin-bottom: 16px;
    font-weight: 700;
    color: #1a1a2e;
}

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

.service-item .price {
    font-size: 32px;
    font-weight: 700;
    color: #4a90e2;
    margin-bottom: 20px;
}

.service-item .btn-select {
    padding: 14px 32px;
    background-color: #4a90e2;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.service-item .btn-select:hover {
    background-color: #357abd;
    transform: translateY(-2px);
}

.legal-page {
    padding: 80px 20px;
    background-color: #ffffff;
}

.legal-page h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 16px;
    font-weight: 700;
}

.legal-page h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 12px;
    font-weight: 700;
}

.legal-page p,
.legal-page ul {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-page ul {
    padding-left: 24px;
}

.legal-page ul li {
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .hero-text-container h1 {
        font-size: 32px;
    }

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

    .container-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav {
        width: 100%;
        flex-wrap: wrap;
    }

    .split-content-reverse {
        flex-direction: column;
    }

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

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