* {
    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: #ffffff;
    border-bottom: 1px solid #e1e8ed;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

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

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

.ad-notice {
    background-color: #f8f9fa;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 12px;
    color: #6c757d;
    border: 1px solid #dee2e6;
}

.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: 80px 60px;
    background-color: #f8f9fa;
}

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

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

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

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

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

.cta-primary:hover {
    background-color: #34495e;
}

.intro-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.intro-image {
    flex: 0 0 45%;
    background-color: #e9ecef;
}

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

.intro-content {
    flex: 1;
    padding: 80px 60px;
}

.intro-content h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: #1a1a1a;
}

.intro-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.services-section {
    background-color: #f8f9fa;
    padding: 100px 40px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 40px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.section-header p {
    font-size: 18px;
    color: #666;
}

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

.service-card {
    flex: 1 1 calc(50% - 15px);
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.service-card h3 {
    font-size: 24px;
    margin: 24px 24px 12px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin: 0 24px 16px;
}

.service-card .price {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin: 16px 24px 24px;
}

.form-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.form-content {
    flex: 1;
    padding: 80px 60px;
}

.form-content h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.form-content p {
    font-size: 17px;
    color: #666;
    margin-bottom: 36px;
}

.form-visual {
    flex: 0 0 45%;
    background-color: #e9ecef;
}

.form-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-form {
    max-width: 500px;
}

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

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

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

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

.btn-submit {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 14px 40px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #34495e;
}

.trust-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    background-color: #ffffff;
}

.trust-content {
    flex: 1;
    padding: 80px 60px;
}

.trust-content h2 {
    font-size: 36px;
    margin-bottom: 36px;
    color: #1a1a1a;
}

.trust-item {
    margin-bottom: 32px;
}

.trust-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

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

.trust-image {
    flex: 0 0 40%;
    background-color: #e9ecef;
}

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

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

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    color: #bdc3c7;
}

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

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

.footer-col ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 20px;
    background-color: rgba(255,255,255,0.05);
    border-radius: 6px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #95a5a6;
}

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

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

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

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

.cookie-content {
    max-width: 1400px;
    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-buttons {
    display: flex;
    gap: 12px;
}

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

.btn-reject {
    background-color: #95a5a6;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #7f8c8d;
}

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

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

.hero-text h1 {
    font-size: 44px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.hero-text p {
    font-size: 18px;
    line-height: 1.7;
    color: #666;
}

.hero-bg {
    flex: 1;
    background-color: #e9ecef;
}

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

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

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

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

.service-visual {
    flex: 0 0 45%;
    background-color: #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}

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

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

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

.service-info p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

.service-features {
    list-style: none;
    margin: 24px 0;
}

.service-features li {
    font-size: 15px;
    color: #666;
    padding: 8px 0 8px 28px;
    position: relative;
}

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

.pricing-box {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.price-label {
    font-size: 16px;
    color: #666;
}

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

.cta-section {
    background-color: #2c3e50;
    padding: 80px 40px;
}

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

.cta-inner h2 {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 16px;
}

.cta-inner p {
    font-size: 18px;
    color: #bdc3c7;
    margin-bottom: 32px;
}

.btn-cta-large {
    display: inline-block;
    background-color: #27ae60;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 17px;
    transition: background-color 0.3s ease;
}

.btn-cta-large:hover {
    background-color: #229954;
}

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

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

.about-hero-content h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.about-hero-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

.about-hero-image {
    flex: 0 0 50%;
    background-color: #e9ecef;
}

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

.mission-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    background-color: #f8f9fa;
}

.mission-text {
    flex: 1;
    padding: 80px 60px;
}

.mission-text h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: #1a1a1a;
}

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

.mission-image {
    flex: 0 0 40%;
    background-color: #e9ecef;
}

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

.values-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
}

.values-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.value-box {
    flex: 1 1 calc(50% - 20px);
    padding: 36px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.value-box h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.value-box p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

.process-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.process-image {
    flex: 0 0 40%;
    background-color: #e9ecef;
}

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

.process-content {
    flex: 1;
    padding: 80px 60px;
}

.process-content h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.process-step {
    margin-bottom: 32px;
}

.process-step h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

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

.portfolio-teaser {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
    background-color: #f8f9fa;
}

.portfolio-teaser h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.portfolio-teaser > p {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
}

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

.portfolio-item {
    flex: 1 1 calc(33.333% - 20px);
    border-radius: 8px;
    overflow: hidden;
    background-color: #ffffff;
}

.portfolio-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.portfolio-caption {
    padding: 20px;
}

.portfolio-caption h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.portfolio-caption p {
    font-size: 14px;
    color: #666;
}

.contact-hero {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px 40px;
    text-align: center;
}

.contact-hero h1 {
    font-size: 44px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.contact-hero p {
    font-size: 18px;
    color: #666;
}

.contact-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    gap: 60px;
    padding: 60px 40px;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 32px;
    margin-bottom: 36px;
    color: #1a1a1a;
}

.contact-item {
    margin-bottom: 32px;
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2c3e50;
    font-weight: 600;
}

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

.contact-map {
    flex: 1;
    background-color: #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}

.contact-map img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.map-note {
    padding: 24px;
    background-color: #f8f9fa;
}

.map-note p {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
}

.contact-cta {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    text-align: center;
    background-color: #f8f9fa;
}

.contact-cta h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.contact-cta p {
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
}

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

.thanks-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 44px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.thanks-next-steps {
    margin: 36px 0;
    padding: 28px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.thanks-next-steps h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.thanks-next-steps ul {
    list-style: none;
}

.thanks-next-steps ul li {
    font-size: 16px;
    color: #666;
    padding: 8px 0 8px 28px;
    position: relative;
}

.thanks-next-steps ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.btn-primary {
    display: inline-block;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #34495e;
}

.btn-secondary {
    display: inline-block;
    background-color: #27ae60;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #229954;
}

.thanks-visual {
    flex: 0 0 45%;
    background-color: #e9ecef;
}

.thanks-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.legal-content h1 {
    font-size: 40px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.legal-updated {
    font-size: 14px;
    color: #95a5a6;
    margin-bottom: 40px;
}

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

.legal-content h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #34495e;
}

.legal-content h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #555;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

.legal-content ul {
    margin: 16px 0 16px 24px;
}

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

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

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

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .form-split,
    .trust-split,
    .page-hero-split,
    .service-block,
    .about-hero-split,
    .mission-split,
    .process-split,
    .contact-split,
    .thanks-section {
        flex-direction: column;
    }

    .hero-left,
    .hero-text,
    .intro-content,
    .form-content,
    .trust-content,
    .service-info,
    .about-hero-content,
    .mission-text,
    .process-content,
    .thanks-content {
        padding: 40px 30px;
    }

    .hero-left h1,
    .hero-text h1,
    .about-hero-content h1,
    .thanks-content h1 {
        font-size: 32px;
    }

    .section-header h2,
    .values-section h2,
    .portfolio-teaser h2,
    .cta-inner h2,
    .contact-hero h1 {
        font-size: 28px;
    }

    .service-card,
    .value-box,
    .portfolio-item {
        flex: 1 1 100%;
    }

    .nav-container {
        padding: 0 20px;
        flex-wrap: wrap;
        height: auto;
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .nav-links {
        order: 3;
        width: 100%;
        flex-direction: column;
        gap: 10px;
        margin-top: 15px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 16px;
    }

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