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

.main-nav {
    background-color: #1a1a2e;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

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

.nav-links a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
}

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

.ad-label {
    background-color: #2ecc71;
    color: #ffffff;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
}

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

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

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

.hero-left p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #4a5568;
}

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

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

.cta-primary {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: #3498db;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid #3498db;
    transition: all 0.3s;
    cursor: pointer;
}

.cta-secondary:hover {
    background-color: #3498db;
    color: #ffffff;
}

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

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

.intro-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.intro-content p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.8;
}

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

.services-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    gap: 4rem;
}

.services-left {
    flex: 1;
    display: flex;
    align-items: center;
}

.services-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.services-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.services-right h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.services-right > p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: #4a5568;
}

.service-card {
    background-color: #ffffff;
    padding: 1.8rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #1a1a2e;
}

.service-card p {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 1rem;
}

.price {
    display: inline-block;
    background-color: #2ecc71;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.1rem;
}

.approach-section {
    background-color: #1a1a2e;
    padding: 5rem 2rem;
    color: #ffffff;
}

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

.approach-content h2 {
    font-size: 2.4rem;
    margin-bottom: 3rem;
    text-align: center;
}

.approach-steps {
    display: flex;
    gap: 3rem;
    justify-content: space-between;
}

.step-item {
    flex: 1;
    background-color: #2c2c44;
    padding: 2rem;
    border-radius: 8px;
}

.step-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2ecc71;
}

.step-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #e0e0e0;
}

.case-highlight {
    background-color: #ffffff;
    padding: 5rem 2rem;
}

.case-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    gap: 4rem;
}

.case-left {
    flex: 1;
    background-color: #f0f4f8;
}

.case-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.case-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.case-right h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.case-right p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #4a5568;
    line-height: 1.8;
}

.case-note {
    font-size: 0.95rem;
    font-style: italic;
    color: #718096;
}

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

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.form-container h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
    text-align: center;
}

.form-container > p {
    text-align: center;
    margin-bottom: 2.5rem;
    color: #4a5568;
}

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

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

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

.form-group input,
.form-group select {
    padding: 0.9rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

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

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

.footer-column {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.footer-column h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-column a {
    color: #e0e0e0;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: #2c2c44;
    border-radius: 8px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #b8b8c8;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #2c2c44;
    font-size: 0.9rem;
}

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

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

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

.cookie-accept,
.cookie-reject {
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-accept {
    background-color: #2ecc71;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #27ae60;
}

.cookie-reject {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

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

.about-hero {
    background-color: #f8f9fa;
    padding: 4rem 2rem;
}

.about-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    gap: 4rem;
    align-items: center;
}

.about-left {
    flex: 1;
}

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

.about-left p {
    font-size: 1.15rem;
    color: #4a5568;
    line-height: 1.8;
}

.about-right {
    flex: 1;
}

.about-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

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

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

.story-content h2 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
    color: #1a1a2e;
}

.story-content p {
    font-size: 1.1rem;
    margin-bottom: 1.8rem;
    color: #4a5568;
    line-height: 1.8;
}

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

.team-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    gap: 4rem;
}

.team-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-left h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.team-left p {
    font-size: 1.1rem;
    margin-bottom: 1.8rem;
    color: #4a5568;
    line-height: 1.8;
}

.team-right {
    flex: 1;
}

.team-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

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

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

.values-content h2 {
    font-size: 2.4rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a2e;
}

.values-grid {
    display: flex;
    gap: 3rem;
}

.value-item {
    flex: 1;
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.value-item p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.7;
}

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

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #ffffff;
}

.cta-content .cta-primary {
    background-color: #ffffff;
    color: #3498db;
}

.cta-content .cta-primary:hover {
    background-color: #f0f0f0;
}

.services-hero {
    background-color: #f8f9fa;
    padding: 4rem 2rem;
}

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

.services-intro h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.services-intro p {
    font-size: 1.15rem;
    color: #4a5568;
}

.service-detail {
    background-color: #ffffff;
    padding: 4rem 2rem;
}

.service-detail.alt {
    background-color: #f8f9fa;
}

.service-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    gap: 4rem;
    align-items: center;
}

.service-left {
    flex: 1;
}

.service-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.service-left p {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    color: #4a5568;
    line-height: 1.8;
}

.service-features {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.service-features li {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.service-pricing {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.price-label {
    font-size: 1rem;
    color: #4a5568;
    font-weight: 600;
}

.price-amount {
    font-size: 2rem;
    color: #2ecc71;
    font-weight: 700;
}

.service-right {
    flex: 1;
}

.service-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

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

.services-cta .cta-content h2 {
    color: #ffffff;
}

.services-cta .cta-content p {
    color: #e0e0e0;
}

.contact-hero {
    background-color: #f8f9fa;
    padding: 4rem 2rem;
}

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

.contact-intro h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.contact-intro p {
    font-size: 1.15rem;
    color: #4a5568;
}

.contact-info {
    background-color: #ffffff;
    padding: 5rem 2rem;
}

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

.contact-left {
    flex: 1;
}

.contact-left h2 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
    color: #1a1a2e;
}

.info-block {
    margin-bottom: 2.5rem;
}

.info-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #3498db;
}

.info-block p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
}

.contact-right {
    flex: 1;
}

.contact-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

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

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

.note-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.note-content p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.8;
}

.thanks-section {
    background-color: #f8f9fa;
    padding: 6rem 2rem;
    min-height: 60vh;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background-color: #ffffff;
    padding: 4rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.thanks-content h1 {
    font-size: 2.6rem;
    margin-bottom: 1.5rem;
    color: #2ecc71;
}

.thanks-content p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #4a5568;
    line-height: 1.8;
}

.thanks-service {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2.5rem;
}

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

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: #1a1a2e;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

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

.legal-container p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #4a5568;
    line-height: 1.8;
}

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

.legal-container li {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.legal-container a {
    color: #3498db;
    text-decoration: underline;
}

.legal-container em {
    font-size: 0.95rem;
    color: #718096;
}

@media (max-width: 768px) {
    .hero-split,
    .services-split,
    .about-split,
    .team-split,
    .case-split,
    .contact-split,
    .service-split {
        flex-direction: column;
    }

    .approach-steps,
    .values-grid {
        flex-direction: column;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .thanks-actions {
        flex-direction: column;
    }
}