* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #f8f9fa;
}

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

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

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: #4ecdc4;
    letter-spacing: -0.5px;
}

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

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

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

.ad-disclosure {
    color: #95a5a6;
    font-size: 0.75rem;
    border-left: 1px solid #34495e;
    padding-left: 2rem;
    font-style: italic;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 1.5rem;
    z-index: 2000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 0.9rem;
}

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

.btn-cookie-accept, .btn-cookie-reject {
    padding: 0.7rem 1.8rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-cookie-accept {
    background-color: #4ecdc4;
    color: #1a1a2e;
}

.btn-cookie-accept:hover {
    background-color: #3dbdb5;
}

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

.btn-cookie-reject:hover {
    background-color: rgba(236, 240, 241, 0.1);
}

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

.hero-left {
    flex: 1;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

.hero-left h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

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

.hero-right {
    flex: 1;
    background-color: #e8ebed;
}

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

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #4ecdc4;
    color: #1a1a2e;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-primary:hover {
    background-color: #3dbdb5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(78, 205, 196, 0.3);
}

.intro-section {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.intro-container {
    display: flex;
    gap: 4rem;
    align-items: center;
    background-color: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.intro-image {
    flex: 0 0 400px;
    background-color: #e8ebed;
}

.intro-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 2rem;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.intro-text p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.services-highlight {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 4rem 2rem;
    background-color: #1a1a2e;
    border-radius: 8px;
}

.services-highlight h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #4ecdc4;
    margin-bottom: 3rem;
    font-weight: 700;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    width: calc(33.333% - 1.5rem);
    min-width: 320px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background-color: #e8ebed;
}

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem 1.5rem;
    font-size: 1.3rem;
    color: #1a1a2e;
    font-weight: 700;
}

.service-card p {
    padding: 0 1.5rem 1rem 1.5rem;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-card .price {
    padding: 0.5rem 1.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: #4ecdc4;
}

.btn-select-service {
    margin: 0 1.5rem 1.5rem 1.5rem;
    padding: 0.9rem;
    background-color: #4ecdc4;
    color: #1a1a2e;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    margin-top: auto;
}

.btn-select-service:hover {
    background-color: #3dbdb5;
}

.cta-split {
    display: flex;
    max-width: 1400px;
    margin: 6rem auto;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.cta-text {
    flex: 1;
    padding: 4rem;
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-text h2 {
    font-size: 2.2rem;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-text p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.cta-form-container {
    flex: 1;
    padding: 4rem;
    background-color: #1a1a2e;
}

.main-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.main-form h3 {
    font-size: 1.8rem;
    color: #4ecdc4;
    margin-bottom: 1rem;
    font-weight: 700;
}

.main-form input,
.main-form textarea {
    padding: 1rem;
    border: 1px solid #34495e;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    background-color: #2c3e50;
    color: #ecf0f1;
}

.main-form input::placeholder,
.main-form textarea::placeholder {
    color: #95a5a6;
}

.main-form input:focus,
.main-form textarea:focus {
    outline: none;
    border-color: #4ecdc4;
}

.selected-service {
    padding: 1rem;
    background-color: #4ecdc4;
    color: #1a1a2e;
    border-radius: 4px;
    font-weight: 600;
    display: none;
}

.selected-service.active {
    display: block;
}

.btn-submit {
    padding: 1.1rem;
    background-color: #4ecdc4;
    color: #1a1a2e;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.trust-section {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 4rem 2rem;
    text-align: center;
}

.trust-container h2 {
    font-size: 2.2rem;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.trust-container > p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 3rem;
}

.trust-features {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-item {
    flex: 0 0 300px;
    background-color: #fff;
    padding: 2.5rem 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.trust-item h4 {
    font-size: 1.3rem;
    color: #1a1a2e;
    margin-bottom: 1rem;
    font-weight: 700;
}

.trust-item p {
    color: #555;
    line-height: 1.6;
}

.main-footer {
    background-color: #1a1a2e;
    color: #ecf0f1;
    padding: 4rem 2rem 2rem 2rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    color: #4ecdc4;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-col p {
    color: #95a5a6;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.footer-col a {
    display: block;
    color: #ecf0f1;
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    text-align: center;
    color: #95a5a6;
}

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

.disclaimer {
    font-size: 0.8rem;
    line-height: 1.6;
    color: #7f8c8d;
    font-style: italic;
}

.about-hero {
    background-color: #1a1a2e;
    padding: 5rem 2rem;
    text-align: center;
    color: #ecf0f1;
}

.about-hero h1 {
    font-size: 3rem;
    color: #4ecdc4;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.about-content {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.about-split {
    display: flex;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: center;
}

.about-split-reverse {
    flex-direction: row-reverse;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2rem;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-text p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.about-image {
    flex: 0 0 450px;
    background-color: #e8ebed;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
}

.team-section {
    background-color: #f8f9fa;
    padding: 4rem 2rem;
    margin: 4rem 0;
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
}

.team-container h2 {
    font-size: 2.2rem;
    color: #1a1a2e;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

.team-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.team-member {
    flex: 0 0 280px;
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.team-member h4 {
    font-size: 1.2rem;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.team-member .role {
    color: #4ecdc4;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.team-member p {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.6;
}

.services-page-hero {
    background-color: #1a1a2e;
    padding: 4rem 2rem;
    text-align: center;
    color: #ecf0f1;
}

.services-page-hero h1 {
    font-size: 2.8rem;
    color: #4ecdc4;
    margin-bottom: 1rem;
    font-weight: 700;
}

.services-page-hero p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.services-list {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.service-detail {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    background-color: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    align-items: center;
}

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

.service-detail-image {
    flex: 0 0 350px;
    background-color: #e8ebed;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
}

.service-detail-text {
    flex: 1;
}

.service-detail-text h2 {
    font-size: 1.8rem;
    color: #1a1a2e;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.service-detail-text .price {
    font-size: 1.5rem;
    color: #4ecdc4;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: block;
}

.contact-page {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.contact-page h1 {
    font-size: 2.8rem;
    color: #1a1a2e;
    margin-bottom: 2rem;
    font-weight: 700;
}

.contact-split {
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 1.8rem;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.contact-info-item {
    margin-bottom: 2rem;
}

.contact-info-item h3 {
    font-size: 1.2rem;
    color: #4ecdc4;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.contact-info-item p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

.contact-map {
    flex: 1;
    background-color: #e8ebed;
    min-height: 400px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7f8c8d;
}

.legal-page {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.legal-page h1 {
    font-size: 2.5rem;
    color: #1a1a2e;
    margin-bottom: 2rem;
    font-weight: 700;
}

.legal-page h2 {
    font-size: 1.8rem;
    color: #1a1a2e;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.legal-page p {
    color: #555;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

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

.legal-page li {
    color: #555;
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.thanks-page {
    max-width: 800px;
    margin: 6rem auto;
    padding: 4rem 2rem;
    text-align: center;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.thanks-page h1 {
    font-size: 2.8rem;
    color: #4ecdc4;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.thanks-page p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.thanks-page .selected-service-confirm {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 4px;
    margin: 2rem 0;
    font-size: 1.1rem;
    color: #1a1a2e;
    font-weight: 600;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-container,
    .cta-split,
    .about-split,
    .service-detail,
    .contact-split {
        flex-direction: column;
    }

    .service-card {
        width: 100%;
    }

    .footer-container {
        flex-direction: column;
        gap: 2rem;
    }

    .main-nav {
        flex-wrap: wrap;
        gap: 1rem;
    }
}