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

:root {
    --primary-color: #0a0e27;
    --secondary-color: #1a1f3a;
    --accent-color: #4a90e2;
    --text-color: #333333;
    --text-light: #666666;
    --background: #ffffff;
    --background-alt: #f8f9fa;
    --border-color: #e0e0e0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--background);
}

.ad-disclosure {
    background: var(--secondary-color);
    color: #ffffff;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav {
    background: var(--background);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    position: sticky;
    top: 37px;
    z-index: 999;
}

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

.logo {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.hero-minimal {
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 40px 80px;
}

.hero-content {
    max-width: 900px;
    margin-bottom: 60px;
}

.hero-content h1 {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-weight: 700;
}

.hero-subtitle {
    font-size: 22px;
    line-height: 1.5;
    color: var(--text-light);
    max-width: 700px;
}

.hero-image {
    width: 100%;
    margin-top: 40px;
    background: var(--background-alt);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.intro-section {
    max-width: 900px;
    margin: 120px auto;
    padding: 0 40px;
}

.intro-content h2 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.intro-content p {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 24px;
}

.vision-image {
    width: 100%;
    margin: 100px 0;
    background: var(--background-alt);
}

.vision-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.services-preview {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 40px;
}

.services-intro {
    max-width: 800px;
    margin-bottom: 80px;
}

.services-intro h2 {
    font-size: 48px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.services-intro p {
    font-size: 20px;
    color: var(--text-light);
}

.service-card {
    display: flex;
    gap: 80px;
    margin-bottom: 100px;
    align-items: center;
}

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

.service-image {
    flex: 1;
    background: var(--background-alt);
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-content p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 24px;
}

.service-price {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-color);
    margin: 30px 0;
}

.cta-button {
    display: inline-block;
    padding: 16px 36px;
    background: var(--primary-color);
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.cta-button:hover {
    background: var(--secondary-color);
}

.cta-button-secondary {
    display: inline-block;
    padding: 16px 36px;
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border: 2px solid var(--primary-color);
    cursor: pointer;
    transition: all 0.3s;
}

.cta-button-secondary:hover {
    background: var(--primary-color);
    color: #ffffff;
}

.trust-section {
    background: var(--background-alt);
    padding: 120px 40px;
    margin: 120px 0;
}

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

.trust-content h2 {
    font-size: 48px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.trust-content > p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 60px;
    max-width: 900px;
}

.trust-points {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.trust-point {
    flex: 1;
    min-width: 280px;
}

.trust-point h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.trust-point p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
}

.testimonial-section {
    max-width: 1200px;
    margin: 120px auto;
    padding: 0 40px;
}

.testimonial {
    margin-bottom: 60px;
    padding: 40px;
    background: var(--background-alt);
}

.testimonial p {
    font-size: 22px;
    line-height: 1.6;
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 20px;
}

.testimonial-author {
    font-size: 16px;
    color: var(--text-light);
    font-style: normal;
}

.form-section {
    max-width: 800px;
    margin: 120px auto;
    padding: 0 40px;
}

.form-container h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.form-intro {
    font-size: 18px;
    margin-bottom: 40px;
    color: var(--text-light);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    border: 2px solid var(--border-color);
    background: var(--background);
    color: var(--text-color);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.submit-button {
    width: 100%;
    padding: 18px;
    background: var(--primary-color);
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-button:hover {
    background: var(--secondary-color);
}

.final-image {
    width: 100%;
    margin: 120px 0 0;
    background: var(--background-alt);
}

.final-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.main-footer {
    background: var(--primary-color);
    color: #ffffff;
    padding: 80px 40px 20px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto 60px;
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
}

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

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-section p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: #ffffff;
    padding: 30px 40px;
    display: none;
    z-index: 10000;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    margin: 0;
}

.cookie-content a {
    color: var(--accent-color);
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 30px;
    font-size: 15px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-accept {
    background: #ffffff;
    color: var(--primary-color);
}

.cookie-accept:hover {
    background: var(--background-alt);
}

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

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

.page-hero {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px 60px;
}

.page-hero h1 {
    font-size: 56px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.page-hero p {
    font-size: 20px;
    color: var(--text-light);
    max-width: 800px;
}

.about-content,
.contact-content,
.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
}

.about-story,
.about-mission,
.about-approach,
.about-principles,
.about-experience {
    margin-bottom: 80px;
}

.about-story h2,
.about-mission h2,
.about-approach h2,
.about-principles h2,
.about-experience h2 {
    font-size: 40px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.about-story p,
.about-mission p,
.about-experience p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 900px;
}

.about-image,
.about-team-image {
    width: 100%;
    margin: 80px 0;
    background: var(--background-alt);
}

.about-image img,
.about-team-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.approach-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.approach-item {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background: var(--background-alt);
}

.approach-item h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.approach-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
}

.about-principles ul {
    list-style: none;
    max-width: 900px;
}

.about-principles li {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
}

.about-principles li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.cta-section {
    background: var(--background-alt);
    padding: 100px 40px;
    text-align: center;
}

.cta-content h2 {
    font-size: 40px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.service-detail {
    margin-bottom: 100px;
    padding-bottom: 60px;
    border-bottom: 2px solid var(--border-color);
}

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.service-detail-header h2 {
    font-size: 40px;
    color: var(--primary-color);
}

.service-detail-price {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-color);
}

.service-detail-content {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
    align-items: flex-start;
}

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

.service-detail-text p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.service-detail-text h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.service-detail-text ul {
    list-style: none;
    margin-bottom: 24px;
}

.service-detail-text li {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.service-detail-text li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.service-detail-image {
    flex: 1;
    background: var(--background-alt);
}

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

.services-cta {
    background: var(--background-alt);
    padding: 80px 40px;
    text-align: center;
}

.services-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.services-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--text-light);
}

.contact-info {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.contact-block {
    flex: 1;
    min-width: 250px;
}

.contact-block h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.contact-block p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
}

.contact-note {
    margin-top: 12px;
    font-size: 14px;
    color: var(--text-light);
}

.contact-map-placeholder {
    width: 100%;
    margin: 60px 0;
    background: var(--background-alt);
}

.contact-map-placeholder img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.contact-additional {
    max-width: 900px;
    margin-top: 60px;
}

.contact-additional h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-additional p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.contact-additional ul {
    margin-left: 20px;
    margin-top: 12px;
}

.contact-additional li {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 8px;
}

.thanks-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
}

.thanks-content {
    max-width: 800px;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.thanks-content > p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: var(--text-color);
}

.thanks-service {
    padding: 20px;
    background: var(--background-alt);
    margin-bottom: 40px;
    font-size: 18px;
}

.thanks-next {
    margin-bottom: 50px;
}

.thanks-next h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-next ol {
    margin-left: 20px;
}

.thanks-next li {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.thanks-image {
    width: 100%;
    margin: 60px 0 0;
    background: var(--background-alt);
}

.thanks-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

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

.legal-page h1 {
    font-size: 44px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 50px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

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

.legal-page ul,
.legal-page ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-page li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.legal-page a {
    color: var(--accent-color);
    text-decoration: underline;
}

@media screen and (max-width: 768px) {
    .hero-content h1 {
        font-size: 40px;
    }

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

    .intro-content h2,
    .services-intro h2,
    .trust-content h2 {
        font-size: 32px;
    }

    .service-card,
    .service-card.reverse {
        flex-direction: column;
        gap: 40px;
    }

    .service-detail-content {
        flex-direction: column;
    }

    .nav-links {
        gap: 20px;
    }

    .trust-points {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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