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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    flex-wrap: wrap;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2563eb;
}

.ad-notice {
    font-size: 11px;
    color: #64748b;
    background: #f1f5f9;
    padding: 4px 10px;
    border-radius: 4px;
    margin: 0 20px;
}

.main-nav {
    display: flex;
    gap: 30px;
}

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

.main-nav a:hover {
    color: #2563eb;
}

.hero-split {
    background: #f8fafc;
}

.hero-content {
    display: flex;
    align-items: center;
    min-height: 600px;
}

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

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1e293b;
}

.hero-text p {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-image {
    flex: 1;
    background: #cbd5e1;
}

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

.cta-primary {
    display: inline-block;
    background: #2563eb;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-primary:hover {
    background: #1d4ed8;
}

.intro-section {
    padding: 80px 0;
}

.split-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

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

.content-block {
    flex: 1;
}

.content-block h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1e293b;
}

.content-block p {
    font-size: 17px;
    color: #475569;
    margin-bottom: 16px;
}

.image-block {
    flex: 1;
    background: #e2e8f0;
}

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

.services-overview {
    padding: 80px 0;
    background: #f8fafc;
}

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

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

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

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: #cbd5e1;
}

.service-card h3 {
    font-size: 20px;
    padding: 20px 20px 10px;
    color: #1e293b;
}

.service-card p {
    padding: 0 20px;
    font-size: 15px;
    color: #64748b;
    margin-bottom: 12px;
}

.service-card .price {
    padding: 0 20px 20px;
    font-size: 22px;
    font-weight: 700;
    color: #2563eb;
}

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

.form-description {
    flex: 1;
}

.form-description h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1e293b;
}

.form-description p {
    font-size: 17px;
    color: #475569;
}

.form-container {
    flex: 1;
    background: #f8fafc;
    padding: 40px;
    border-radius: 8px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #334155;
}

.contact-form input,
.contact-form select {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 16px;
}

.contact-form input:focus,
.contact-form select:focus {
    outline: none;
    border-color: #2563eb;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #1d4ed8;
}

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

.trust-content {
    flex: 1;
}

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

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

.trust-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 17px;
    color: #475569;
}

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

.trust-image {
    flex: 1;
    background: #e2e8f0;
}

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

.footer {
    background: #1e293b;
    color: #cbd5e1;
    padding: 60px 0 30px;
}

.footer-grid {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

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

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

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

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

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

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

.footer-disclaimer {
    border-top: 1px solid #334155;
    padding-top: 30px;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1e293b;
    color: #ffffff;
    padding: 20px;
    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: 20px;
}

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

.cookie-content a {
    color: #60a5fa;
}

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

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

.btn-accept {
    background: #2563eb;
    color: #ffffff;
}

.btn-accept:hover {
    background: #1d4ed8;
}

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

.btn-reject:hover {
    background: #334155;
}

.page-hero {
    padding: 80px 0 40px;
    background: #f8fafc;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #1e293b;
}

.page-hero p {
    font-size: 18px;
    color: #64748b;
}

.services-detail {
    padding: 60px 0;
}

.service-detail-item {
    margin-bottom: 80px;
}

.detail-text {
    flex: 1;
}

.detail-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1e293b;
}

.detail-text p {
    font-size: 17px;
    color: #475569;
    margin-bottom: 16px;
}

.detail-text ul {
    margin: 20px 0;
    padding-left: 20px;
}

.detail-text ul li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #475569;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #2563eb;
    margin-top: 20px;
}

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

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

.cta-section {
    padding: 80px 0;
    background: #eff6ff;
    text-align: center;
}

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

.cta-section p {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 30px;
}

.about-content {
    padding: 60px 0;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1e293b;
}

.about-text p {
    font-size: 17px;
    color: #475569;
    margin-bottom: 16px;
}

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

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

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

.values-text {
    flex: 1;
}

.values-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1e293b;
}

.values-text p {
    font-size: 17px;
    color: #475569;
    margin-bottom: 16px;
}

.values-text ul {
    margin-top: 20px;
}

.values-text ul li {
    margin-bottom: 16px;
    font-size: 16px;
    color: #475569;
    list-style: none;
    padding-left: 0;
}

.values-text ul li strong {
    color: #1e293b;
}

.values-image {
    flex: 1;
    background: #e2e8f0;
}

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

.experience-section {
    padding: 80px 0;
}

.experience-text {
    flex: 1;
}

.experience-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1e293b;
}

.experience-text p {
    font-size: 17px;
    color: #475569;
    margin-bottom: 16px;
}

.experience-image {
    flex: 1;
    background: #e2e8f0;
}

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

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

.contact-info {
    flex: 1;
}

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

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1e293b;
}

.contact-item p {
    font-size: 17px;
    color: #475569;
    line-height: 1.8;
}

.contact-image {
    flex: 1;
    background: #e2e8f0;
}

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

.contact-note {
    padding: 60px 0;
    background: #f8fafc;
}

.contact-note h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1e293b;
}

.contact-note p {
    font-size: 17px;
    color: #475569;
    margin-bottom: 16px;
}

.contact-note a {
    color: #2563eb;
    text-decoration: none;
}

.contact-note a:hover {
    text-decoration: underline;
}

.thanks-section {
    padding: 120px 0;
    text-align: center;
}

.thanks-content {
    max-width: 600px;
    margin: 0 auto;
}

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

.thanks-content p {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 16px;
}

.legal-content {
    padding: 60px 0;
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1e293b;
}

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

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #334155;
}

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

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

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

@media (max-width: 768px) {
    .nav-wrapper {
        flex-direction: column;
        gap: 16px;
    }

    .main-nav {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

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

    .hero-text {
        padding: 40px 20px;
    }

    .hero-text h1 {
        font-size: 32px;
    }

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

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

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

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

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

    .content-block h2,
    .detail-text h2,
    .about-text h2,
    .values-text h2,
    .experience-text h2,
    .contact-info h2 {
        font-size: 28px;
    }
}
