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

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

.main-nav {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

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

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

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

.hero-split {
    display: flex;
    min-height: 600px;
}

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

.hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #2c3e50;
}

.hero-content p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 35px;
    color: #556270;
}

.hero-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

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

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

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

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

.cta-text {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

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

.intro-offset {
    padding: 100px 0;
    background: #ffffff;
}

.offset-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
    padding: 0 30px;
}

.intro-text {
    flex: 1.2;
}

.intro-text h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.intro-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #556270;
}

.intro-image {
    flex: 0.8;
    border-radius: 8px;
    overflow: hidden;
}

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

.value-proposition {
    display: flex;
    min-height: 550px;
}

.value-left {
    flex: 1;
    overflow: hidden;
}

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

.value-right {
    flex: 1;
    padding: 70px 60px;
    background: #ffffff;
}

.value-right h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.value-right p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #556270;
}

.benefits-list {
    list-style: none;
    margin-bottom: 35px;
}

.benefits-list li {
    padding-left: 30px;
    margin-bottom: 15px;
    position: relative;
    font-size: 17px;
    color: #2c3e50;
}

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

.services-cards {
    padding: 100px 0;
    background: #f8f9fa;
}

.services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    padding: 0 30px;
}

.services-header h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.services-header p {
    font-size: 19px;
    color: #556270;
}

.cards-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    padding: 0 30px;
}

.service-card {
    flex: 1 1 calc(50% - 20px);
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.card-image {
    height: 240px;
    overflow: hidden;
}

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

.card-content {
    padding: 35px;
}

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

.card-content p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #556270;
    line-height: 1.6;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.select-service {
    display: inline-block;
    background: #3498db;
    color: #ffffff;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
    font-size: 15px;
}

.select-service:hover {
    background: #2980b9;
}

.form-section {
    padding: 100px 0;
    background: #ffffff;
}

.form-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    padding: 0 30px;
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.form-intro p {
    font-size: 18px;
    color: #556270;
    line-height: 1.7;
}

.form-container {
    flex: 1;
}

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

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

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

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

.trust-section {
    padding: 80px 0;
    background: #ecf0f1;
}

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

.trust-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.trust-content p {
    font-size: 18px;
    color: #556270;
    margin-bottom: 30px;
    line-height: 1.7;
}

.main-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 20px;
}

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

.footer-column {
    flex: 1;
}

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

.footer-column p,
.footer-column a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 15px;
}

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

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

.footer-bottom p {
    color: #95a5a6;
    font-size: 13px;
    margin-bottom: 10px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 25px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    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;
    margin: 0;
    font-size: 15px;
}

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

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

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

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

.cookie-accept:hover {
    background: #229954;
}

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

.cookie-reject:hover {
    background: #ffffff;
    color: #2c3e50;
}

.page-hero {
    padding: 100px 30px;
    text-align: center;
    color: #ffffff;
}

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

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

.about-split {
    display: flex;
    max-width: 1200px;
    margin: 80px auto;
    gap: 60px;
    padding: 0 30px;
}

.about-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

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

.about-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.about-text p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #556270;
    line-height: 1.7;
}

.philosophy-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.philosophy-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.philosophy-content h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.philosophy-item {
    flex: 1 1 calc(50% - 20px);
}

.philosophy-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

.team-section {
    padding: 100px 0;
    background: #ffffff;
}

.team-intro {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
    padding: 0 30px;
}

.team-intro h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.team-intro p {
    font-size: 18px;
    color: #556270;
}

.team-visual {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
}

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

.approach-section {
    display: flex;
    max-width: 1200px;
    margin: 80px auto;
    gap: 60px;
    padding: 0 30px;
}

.approach-left {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.approach-left h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.approach-left p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #556270;
    line-height: 1.7;
}

.approach-right {
    flex: 0.8;
    border-radius: 8px;
    overflow: hidden;
}

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

.values-section {
    padding: 80px 0;
    background: #ecf0f1;
}

.values-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px;
}

.values-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.values-list {
    list-style: none;
}

.values-list li {
    padding-left: 35px;
    margin-bottom: 20px;
    position: relative;
    font-size: 19px;
    color: #2c3e50;
}

.values-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
    font-size: 22px;
}

.cta-section {
    padding: 100px 0;
    background: #2c3e50;
    text-align: center;
}

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

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

.cta-content p {
    font-size: 19px;
    margin-bottom: 35px;
    color: #ecf0f1;
}

.service-detail {
    padding: 80px 0;
    background: #ffffff;
}

.service-detail.alternate {
    background: #f8f9fa;
}

.detail-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    padding: 0 30px;
    align-items: center;
}

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

.detail-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

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

.detail-text {
    flex: 1;
}

.detail-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.detail-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #556270;
    line-height: 1.7;
}

.service-features h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: #2c3e50;
}

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

.service-features ul li {
    padding-left: 30px;
    margin-bottom: 12px;
    position: relative;
    font-size: 16px;
    color: #556270;
}

.service-features ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
    font-size: 20px;
}

.price-large {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 25px;
}

.combination-section {
    padding: 80px 0;
    background: #ecf0f1;
}

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

.combination-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.combination-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #556270;
    line-height: 1.7;
}

.contact-split {
    display: flex;
    max-width: 1200px;
    margin: 80px auto;
    gap: 80px;
    padding: 0 30px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
}

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

.info-block h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

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

.contact-visual {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

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

.location-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.location-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px;
}

.location-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.location-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #556270;
    line-height: 1.7;
}

.approach-contact {
    padding: 80px 0;
    background: #ffffff;
}

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

.approach-content h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    color: #2c3e50;
}

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

.step-item {
    flex: 1 1 calc(50% - 20px);
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: #3498db;
    color: #ffffff;
    border-radius: 50%;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.step-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

.faq-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px;
}

.faq-content h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.faq-item {
    margin-bottom: 30px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

.thanks-section {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.thanks-icon {
    width: 100px;
    height: 100px;
    line-height: 100px;
    margin: 0 auto 30px;
    background: #27ae60;
    color: #ffffff;
    border-radius: 50%;
    font-size: 50px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-message {
    font-size: 19px;
    margin-bottom: 35px;
    color: #556270;
}

.selected-service-info {
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
    font-size: 17px;
    color: #2c3e50;
}

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

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
    color: #2c3e50;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.step {
    padding-left: 0;
}

.step strong {
    display: block;
    font-size: 18px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.step p {
    font-size: 16px;
    color: #556270;
    line-height: 1.7;
}

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

.legal-page {
    padding: 80px 0;
    background: #f8f9fa;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background: #ffffff;
    border-radius: 8px;
}

.legal-content h1 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.legal-content h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.legal-content p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #556270;
    line-height: 1.7;
}

.legal-content ul {
    margin: 20px 0 20px 30px;
}

.legal-content li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #556270;
    line-height: 1.7;
}

.legal-content a {
    color: #3498db;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .hero-split,
    .value-proposition,
    .offset-content,
    .form-split,
    .about-split,
    .approach-section,
    .contact-split,
    .detail-content {
        flex-direction: column;
    }

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

    .nav-container {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

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

    .service-card {
        flex: 1 1 100%;
    }

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

    .philosophy-item,
    .step-item {
        flex: 1 1 100%;
    }

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

    .cookie-content {
        flex-direction: column;
    }

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

    .services-header h2,
    .cta-content h2 {
        font-size: 32px;
    }
}