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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #fff;
    padding: 20px;
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

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

.btn-accept, .btn-reject {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #4CAF50;
    color: white;
}

.btn-accept:hover {
    background: #45a049;
}

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

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

.main-header {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-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: 700;
    color: #1a1a1a;
}

.main-nav {
    display: flex;
    gap: 35px;
    align-items: center;
}

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

.main-nav a:hover {
    color: #6366f1;
}

.ad-notice {
    font-size: 12px;
    color: #666;
    padding: 5px 12px;
    background: #f5f5f5;
    border-radius: 4px;
}

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

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

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.hero-left p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 35px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #6366f1;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background: #4f46e5;
    transform: translateY(-2px);
}

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

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

.intro-section {
    padding: 100px 40px;
    background: #ffffff;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.intro-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
}

.intro-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a4a;
}

.services-showcase {
    padding: 80px 40px;
    background: #f9f9f9;
}

.section-header-centered {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-centered h2 {
    font-size: 42px;
    color: #1a1a1a;
}

.service-grid-split {
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    display: flex;
    margin-bottom: 40px;
    background: white;
    overflow: hidden;
    align-items: stretch;
}

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

.service-image {
    flex: 1;
    background: #ddd;
}

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

.service-info {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-info p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 25px;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #6366f1;
    margin-bottom: 25px;
}

.btn-select-service {
    padding: 14px 30px;
    background: #1a1a1a;
    color: white;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-select-service:hover {
    background: #333;
    transform: translateX(5px);
}

.process-section {
    padding: 100px 40px;
    background: #1a1a1a;
    color: white;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
}

.process-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 70px;
}

.process-blocks {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.process-item {
    flex: 1;
    min-width: 250px;
}

.process-number {
    font-size: 48px;
    font-weight: 700;
    color: #6366f1;
    margin-bottom: 20px;
}

.process-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.process-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #ccc;
}

.form-section {
    padding: 100px 40px;
    background: #f5f5f5;
}

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

.form-left {
    flex: 1;
}

.form-left h2 {
    font-size: 40px;
    margin-bottom: 25px;
}

.form-left p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
}

.form-right {
    flex: 1;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 15px;
    border: 1px solid #ddd;
    font-size: 16px;
    font-family: inherit;
    background: white;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #6366f1;
}

.btn-submit {
    padding: 16px 40px;
    background: #6366f1;
    color: white;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #4f46e5;
    transform: translateY(-2px);
}

.main-footer {
    background: #2c2c2c;
    color: #ccc;
    padding: 60px 40px 30px;
}

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

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-column a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: white;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
}

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

.footer-bottom p {
    font-size: 14px;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 12px;
    color: #999;
    max-width: 900px;
    margin: 20px auto 0;
    line-height: 1.6;
}

.page-hero {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    padding: 100px 40px;
    text-align: center;
    color: white;
}

.page-hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.page-hero-content p {
    font-size: 20px;
    opacity: 0.9;
}

.about-content {
    padding: 100px 40px;
    background: white;
}

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

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.about-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
    background: #ddd;
}

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

.expertise-section {
    padding: 100px 40px;
    background: #f9f9f9;
}

.expertise-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
}

.expertise-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.expertise-card {
    flex: 1;
    min-width: 250px;
    background: white;
    padding: 35px;
}

.expertise-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.expertise-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
}

.team-philosophy {
    padding: 100px 40px;
    background: white;
}

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

.philosophy-content h2 {
    font-size: 40px;
    margin-bottom: 30px;
    text-align: center;
}

.philosophy-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 25px;
}

.services-detailed {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
}

.service-detail-block {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

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

.service-detail-image {
    flex: 1;
    background: #ddd;
}

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

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    color: #4a4a4a;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #6366f1;
    font-weight: 700;
}

.cta-section {
    padding: 100px 40px;
    background: #1a1a1a;
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

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

.contact-section {
    padding: 80px 40px;
    background: white;
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info-block h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #6366f1;
}

.contact-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
}

.map-section {
    background: #f5f5f5;
}

.map-placeholder {
    max-width: 100%;
    height: 400px;
    background: #ddd;
}

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

.thanks-section {
    padding: 120px 40px;
    background: white;
    min-height: 60vh;
}

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

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

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

.thanks-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 15px;
}

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

.btn-primary {
    padding: 16px 40px;
    background: #6366f1;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    background: #4f46e5;
    transform: translateY(-2px);
}

.btn-secondary {
    padding: 16px 40px;
    background: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: #1a1a1a;
    color: white;
}

.legal-content {
    padding: 60px 40px;
    background: white;
}

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

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.legal-date {
    color: #666;
    margin-bottom: 40px;
    font-size: 14px;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.legal-container p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.legal-container ul {
    margin-bottom: 25px;
    padding-left: 25px;
}

.legal-container ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 10px;
}

.legal-container a {
    color: #6366f1;
    text-decoration: underline;
}

.legal-container a:hover {
    color: #4f46e5;
}

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

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

    .form-container-split {
        flex-direction: column;
    }

    .process-blocks {
        flex-direction: column;
    }

    .main-nav {
        flex-wrap: wrap;
        gap: 15px;
    }

    .about-split {
        flex-direction: column;
    }

    .service-detail-block,
    .service-detail-block.reverse {
        flex-direction: column;
    }

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

    .thanks-actions {
        flex-direction: column;
        align-items: stretch;
    }

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