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

.ad-notice {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    border-bottom: 1px solid #dee2e6;
}

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

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

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

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

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

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

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

.hero-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a1a2e;
    font-weight: 700;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #5a6c7d;
    max-width: 550px;
}

.hero-visual {
    flex: 1;
    background-color: #e5e9f0;
}

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

.cta-primary {
    display: inline-block;
    background-color: #2d5f8d;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
    align-self: flex-start;
    font-size: 16px;
}

.cta-primary:hover {
    background-color: #234a6d;
}

.cta-secondary {
    display: inline-block;
    background-color: #ffffff;
    color: #2d5f8d;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #2d5f8d;
    border-radius: 4px;
    transition: all 0.3s;
    align-self: flex-start;
    font-size: 16px;
}

.cta-secondary:hover {
    background-color: #2d5f8d;
    color: #ffffff;
}

.intro-section {
    padding: 90px 30px;
    background-color: #ffffff;
}

.split-layout {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
    align-items: center;
}

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

.content-block {
    flex: 1;
}

.content-block h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a2e;
    line-height: 1.3;
}

.content-block h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.content-block p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #4a5568;
    line-height: 1.7;
}

.content-block ul {
    margin: 20px 0;
    padding-left: 25px;
}

.content-block ul li {
    margin-bottom: 12px;
    font-size: 17px;
    color: #4a5568;
    line-height: 1.6;
}

.visual-block {
    flex: 1;
    background-color: #e5e9f0;
}

.visual-block img {
    width: 100%;
    height: 100%;
    display: block;
    min-height: 350px;
}

.services-preview {
    padding: 90px 30px;
    background-color: #f8f9fa;
}

.services-preview h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a1a2e;
}

.services-grid {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

.service-card img {
    width: 100%;
    height: 220px;
    background-color: #e5e9f0;
}

.service-card h3 {
    font-size: 22px;
    margin: 25px 25px 15px;
    color: #1a1a2e;
}

.service-card p {
    font-size: 16px;
    margin: 0 25px 20px;
    color: #5a6c7d;
    line-height: 1.6;
    flex-grow: 1;
}

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: #2d5f8d;
    margin: 0 25px 15px;
    display: block;
}

.service-link {
    display: block;
    text-align: center;
    padding: 15px;
    background-color: #f5f7fa;
    color: #2d5f8d;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
    margin-top: auto;
}

.service-link:hover {
    background-color: #e5e9f0;
}

.approach-section {
    padding: 90px 30px;
    background-color: #ffffff;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-top: 25px;
}

.feature-list li {
    padding-left: 30px;
    margin-bottom: 15px;
    position: relative;
    font-size: 17px;
    color: #4a5568;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d5f8d;
    font-weight: 700;
    font-size: 20px;
}

.cta-inline {
    padding: 80px 30px;
    text-align: center;
    background-color: #2d5f8d;
    color: #ffffff;
}

.cta-inline h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.cta-inline p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-inline .cta-secondary {
    background-color: #ffffff;
    color: #2d5f8d;
    border-color: #ffffff;
}

.cta-inline .cta-secondary:hover {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.page-header {
    padding: 80px 30px 60px;
    text-align: center;
    background-color: #f5f7fa;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.page-header p {
    font-size: 20px;
    color: #5a6c7d;
}

.services-detailed {
    padding: 60px 30px;
}

.service-detail {
    margin-bottom: 80px;
    padding: 40px 0;
}

.pricing-box {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin: 30px 0;
    padding: 25px;
    background-color: #f8f9fa;
    border-left: 4px solid #2d5f8d;
}

.price-label {
    font-size: 16px;
    color: #5a6c7d;
    font-weight: 500;
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: #2d5f8d;
}

.cta-select {
    display: inline-block;
    background-color: #2d5f8d;
    color: #ffffff;
    padding: 16px 40px;
    border: none;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 16px;
    font-family: inherit;
}

.cta-select:hover {
    background-color: #234a6d;
}

.form-section {
    max-width: 700px;
    margin: 60px auto;
    padding: 50px 40px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.form-section h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.form-section p {
    margin-bottom: 30px;
    color: #5a6c7d;
    font-size: 16px;
}

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

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

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2d5f8d;
}

.service-display {
    font-size: 18px;
    font-weight: 600;
    color: #2d5f8d;
    padding: 15px;
    background-color: #ffffff;
    border-radius: 4px;
}

.about-intro {
    padding: 60px 30px;
}

.methodology-section {
    padding: 80px 30px;
    background-color: #f8f9fa;
}

.methodology-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a1a2e;
}

.principles-grid {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
    flex-wrap: wrap;
}

.principle-item {
    flex: 1;
    min-width: 250px;
    padding: 35px 30px;
    background-color: #ffffff;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.principle-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2d5f8d;
}

.principle-item p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
}

.team-approach {
    padding: 80px 30px;
}

.values-section {
    padding: 80px 30px;
    background-color: #f8f9fa;
}

.contact-content {
    padding: 60px 30px;
}

.contact-info {
    flex: 1;
}

.contact-visual {
    flex: 1;
}

.info-block {
    margin-bottom: 35px;
}

.info-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a2e;
    font-weight: 600;
}

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

.contact-note {
    padding: 60px 30px;
    background-color: #f8f9fa;
}

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

.note-content h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a1a2e;
}

.note-content p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #4a5568;
    line-height: 1.7;
}

.thanks-section {
    padding: 80px 30px;
    min-height: 500px;
}

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

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #1a1a2e;
}

.thanks-content > p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #5a6c7d;
}

.next-steps {
    text-align: left;
    margin: 50px 0;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #1a1a2e;
}

.next-steps ol {
    padding-left: 25px;
}

.next-steps li {
    font-size: 17px;
    margin-bottom: 15px;
    color: #4a5568;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

#service-confirmation {
    margin: 30px 0;
    padding: 25px;
    background-color: #e8f4f8;
    border-radius: 6px;
    font-size: 18px;
    color: #2d5f8d;
    font-weight: 600;
}

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

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #1a1a2e;
}

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

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-page h4 {
    font-size: 18px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.legal-page p {
    font-size: 16px;
    margin-bottom: 18px;
    color: #4a5568;
    line-height: 1.7;
}

.legal-page ul {
    margin: 20px 0;
    padding-left: 25px;
}

.legal-page li {
    margin-bottom: 12px;
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
}

.main-footer {
    background-color: #1a1a2e;
    color: #e8e8e8;
    padding: 60px 30px 30px;
}

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

.footer-section {
    flex: 1;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 600;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #b8b8b8;
}

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

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

.footer-section a {
    color: #b8b8b8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #2d3748;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #9ca3af;
    margin-bottom: 15px;
}

.disclaimer {
    font-size: 12px;
    color: #6b7280;
    font-style: italic;
    max-width: 800px;
    margin: 15px auto 0;
    line-height: 1.5;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a2e;
    color: #ffffff;
    padding: 25px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    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;
    gap: 30px;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

.cookie-content a {
    color: #4a90e2;
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 15px;
}

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
    font-family: inherit;
}

.btn-accept {
    background-color: #2d5f8d;
    color: #ffffff;
}

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

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

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

@media (max-width: 768px) {
    .hero-split {
        flex-direction: column;
    }

    .hero-content {
        padding: 50px 30px;
    }

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

    .split-layout,
    .split-layout.reverse {
        flex-direction: column;
        gap: 40px;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

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

    .nav-menu {
        gap: 20px;
    }

    .page-header h1 {
        font-size: 36px;
    }
}