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

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

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

.hidden {
    display: none;
}

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

.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;
    margin: 0;
    min-width: 280px;
}

.cookie-content a {
    color: #4a9eff;
    text-decoration: underline;
}

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

.btn-primary,
.btn-secondary {
    padding: 10px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #4a9eff;
    color: #ffffff;
}

.btn-primary:hover {
    background: #357abf;
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

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

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

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

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

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

.nav a:hover {
    color: #4a9eff;
}

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

.hero-left {
    flex: 1;
    min-width: 400px;
    display: flex;
    align-items: center;
    padding: 60px 40px;
    background: #f9fafb;
}

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

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

.hero-right {
    flex: 1;
    min-width: 400px;
    background: #e0e0e0;
    position: relative;
}

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

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

.btn-hero:hover {
    background: #357abf;
    transform: translateY(-2px);
}

.intro-section {
    padding: 80px 20px;
    background: #ffffff;
}

.intro-lead {
    font-size: 28px;
    line-height: 1.6;
    color: #2c2c2c;
    text-align: center;
    font-weight: 300;
}

.services-showcase {
    padding: 80px 20px;
    background: #fafafa;
}

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

.service-split {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
    flex-wrap: wrap;
}

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

.service-visual {
    flex: 1;
    min-width: 320px;
    background: #ddd;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-info {
    flex: 1;
    min-width: 320px;
}

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

.service-info p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

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

.btn-select {
    padding: 14px 32px;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background: #357abf;
    transform: translateY(-1px);
}

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

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

.form-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 48px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #1a1a1a;
}

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

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

.form-group input[readonly] {
    background: #f5f5f5;
    color: #666;
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #4a9eff;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.trust-section {
    padding: 80px 20px;
    background: #2c2c2c;
    color: #ffffff;
}

.trust-grid {
    display: flex;
    justify-content: space-around;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.trust-item h3 {
    font-size: 52px;
    margin-bottom: 12px;
    color: #4a9eff;
}

.trust-item p {
    font-size: 16px;
    color: #ccc;
}

.footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 60px 20px 20px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 220px;
}

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

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

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

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

.footer-col a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #4a9eff;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
}

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

.disclaimer {
    font-size: 13px;
    color: #888;
    max-width: 800px;
    margin: 20px auto 0;
    line-height: 1.5;
}

.page-header {
    padding: 80px 20px 40px;
    background: #f9fafb;
    text-align: center;
}

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

.page-header p {
    font-size: 19px;
    color: #555;
}

.content-section {
    padding: 60px 20px;
}

.content-section h2 {
    font-size: 32px;
    margin: 40px 0 20px;
    color: #1a1a1a;
}

.content-section h3 {
    font-size: 24px;
    margin: 30px 0 16px;
    color: #2c2c2c;
}

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

.content-section ul,
.content-section ol {
    margin-left: 24px;
    margin-bottom: 20px;
}

.content-section li {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 12px;
}

.contact-info {
    background: #f9fafb;
    padding: 40px;
    border-radius: 8px;
    margin: 40px 0;
}

.contact-info h3 {
    margin-top: 0;
}

.contact-info p {
    margin: 12px 0;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.thanks-content {
    text-align: center;
    max-width: 600px;
}

.thanks-content h1 {
    font-size: 48px;
    color: #4a9eff;
    margin-bottom: 24px;
}

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

.thanks-content .service-detail {
    background: #f9fafb;
    padding: 24px;
    border-radius: 8px;
    margin: 32px 0;
}

.thanks-content .service-detail strong {
    color: #1a1a1a;
}

.thanks-content a {
    display: inline-block;
    margin-top: 32px;
    padding: 16px 40px;
    background: #4a9eff;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.thanks-content a:hover {
    background: #357abf;
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 36px;
    }

    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav {
        flex-wrap: wrap;
        gap: 20px;
    }

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

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

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