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

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

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

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

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

.ad-label {
    background-color: #e74c3c;
    color: #ffffff;
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    border-radius: 4px;
    font-weight: 600;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 2000;
    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: 1rem;
}

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

.btn-primary {
    background-color: #27ae60;
    color: #ffffff;
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    padding: 0.6rem 1.5rem;
    border: 2px solid #ffffff;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #ffffff;
    color: #2c3e50;
}

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #ecf0f1;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    background-color: #16213e;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #ecf0f1;
    max-width: 600px;
}

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

.hero-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.cta-button {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
    align-self: flex-start;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #2980b9;
}

.intro-section {
    display: flex;
    min-height: 500px;
}

.intro-left {
    flex: 1;
    background-color: #bdc3c7;
    overflow: hidden;
}

.intro-left img {
    width: 100%;
    height: 100%;
    display: block;
}

.intro-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    background-color: #ffffff;
}

.intro-right h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.intro-right p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #34495e;
}

.insight-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

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

.insight-content h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.pillars-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.pillar-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 2.5rem;
    border-left: 4px solid #3498db;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.pillar-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #16213e;
}

.pillar-card p {
    color: #5d6d7e;
    line-height: 1.7;
}

.services-preview {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.services-preview h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.services-split {
    max-width: 1400px;
    margin: 0 auto;
}

.service-item {
    display: flex;
    margin-bottom: 4rem;
    min-height: 400px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.service-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem;
    background-color: #ecf0f1;
}

.service-text h3 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    color: #16213e;
}

.service-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #34495e;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #e74c3c;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.select-service {
    background-color: #27ae60;
    color: #ffffff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.select-service:hover {
    background-color: #229954;
}

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

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

.testimonials-section {
    padding: 5rem 2rem;
    background-color: #16213e;
    color: #ffffff;
}

.testimonials-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background-color: #1a1a2e;
    padding: 2rem;
    border-radius: 8px;
}

.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #3498db;
}

.form-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.form-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

.form-intro {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.form-intro p {
    font-size: 1.1rem;
    color: #5d6d7e;
}

.form-container {
    flex: 1;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.form-group input,
.form-group select {
    padding: 0.8rem;
    border: 2px solid #bdc3c7;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    background-color: #3498db;
    color: #ffffff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.disclaimer-section {
    padding: 3rem 2rem;
    background-color: #ffe5e5;
    border-left: 4px solid #e74c3c;
}

.disclaimer-section p {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 0.9rem;
    color: #5d6d7e;
    line-height: 1.7;
}

.footer {
    background-color: #1a1a2e;
    color: #ffffff;
    padding: 3rem 2rem 1rem;
}

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

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

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

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

.about-hero {
    padding: 5rem 2rem;
    background-color: #16213e;
    color: #ffffff;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.about-content p {
    font-size: 1.2rem;
    line-height: 1.7;
}

.mission-split {
    display: flex;
    min-height: 500px;
}

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

.mission-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.mission-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #5d6d7e;
    line-height: 1.7;
}

.mission-image {
    flex: 1;
    background-color: #bdc3c7;
    overflow: hidden;
}

.mission-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.values-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.values-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 300px;
    background-color: #ecf0f1;
    padding: 2.5rem;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #16213e;
}

.value-card p {
    color: #5d6d7e;
    line-height: 1.7;
}

.approach-split {
    display: flex;
    min-height: 500px;
}

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

.approach-image {
    flex: 1;
    background-color: #bdc3c7;
    overflow: hidden;
}

.approach-image img {
    width: 100%;
    height: 100%;
    display: block;
}

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

.approach-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.approach-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #5d6d7e;
    line-height: 1.7;
}

.team-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.team-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.team-info {
    max-width: 900px;
    margin: 0 auto;
}

.team-info p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #5d6d7e;
    line-height: 1.7;
}

.cta-section {
    padding: 5rem 2rem;
    background-color: #3498db;
    color: #ffffff;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.services-hero {
    padding: 5rem 2rem;
    background-color: #16213e;
    color: #ffffff;
    text-align: center;
}

.services-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.services-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.service-detail {
    display: flex;
    margin-bottom: 4rem;
    min-height: 450px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.service-detail-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem;
    background-color: #f8f9fa;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #16213e;
}

.service-detail-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #5d6d7e;
    line-height: 1.7;
}

.service-benefits {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-benefits li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #34495e;
}

.service-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 1.5rem;
}

.service-detail-image {
    flex: 1;
    background-color: #bdc3c7;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.contact-hero {
    padding: 5rem 2rem;
    background-color: #16213e;
    color: #ffffff;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-hero p {
    font-size: 1.2rem;
}

.contact-content {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.contact-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    color: #2c3e50;
}

.contact-detail h3 {
    font-size: 1.4rem;
    color: #16213e;
    margin-bottom: 0.5rem;
}

.contact-detail p {
    font-size: 1.1rem;
    color: #5d6d7e;
    line-height: 1.7;
}

.contact-image {
    flex: 1;
    background-color: #bdc3c7;
    overflow: hidden;
    border-radius: 8px;
}

.contact-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.contact-note {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
    text-align: center;
}

.contact-note p {
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    color: #5d6d7e;
    line-height: 1.7;
}

.thanks-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #27ae60;
}

.thanks-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #5d6d7e;
    line-height: 1.7;
}

.thanks-info {
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: left;
}

.thanks-info h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.next-steps {
    list-style: none;
    margin-top: 1.5rem;
}

.next-steps li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: #34495e;
    font-size: 1.05rem;
}

.next-steps li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
    font-size: 1.2rem;
}

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

.legal-content h1 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #16213e;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #34495e;
}

.legal-content p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #5d6d7e;
    line-height: 1.7;
}

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

.legal-content li {
    margin-bottom: 0.5rem;
    color: #5d6d7e;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-section,
    .mission-split,
    .approach-split,
    .service-item,
    .service-detail,
    .contact-split,
    .form-split {
        flex-direction: column;
    }

    .service-item.reverse,
    .service-detail.reverse,
    .approach-split.reverse {
        flex-direction: column;
    }

    .nav-container {
        flex-direction: column;
        text-align: center;
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-content h1,
    .about-content h1,
    .services-hero h1,
    .contact-hero h1,
    .thanks-content h1 {
        font-size: 2rem;
    }

    .pillars-grid,
    .testimonials-grid,
    .values-grid {
        flex-direction: column;
    }
}