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

a {
    text-decoration: none;
    color: inherit;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2d2d2d;
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-banner.hidden {
    display: none;
}

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

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

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

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

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

.btn-accept {
    background: #ffa500;
    color: #fff;
}

.btn-accept:hover {
    background: #ff8c00;
}

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

.btn-reject:hover {
    background: #fff;
    color: #2d2d2d;
}

.navbar {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    padding: 20px 0;
    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;
}

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

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

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

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

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

.hero-split {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-left {
    flex: 1;
}

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

.hero-left p {
    font-size: 18px;
    color: #555;
    margin-bottom: 32px;
    max-width: 540px;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background: #ffa500;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

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

.intro-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.intro-image {
    flex: 1;
    background: #e5e5e5;
}

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

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

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

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

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

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 320px;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}

.service-card img {
    width: 100%;
    height: 220px;
    display: block;
    object-fit: cover;
    background: #e5e5e5;
}

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

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

.service-price {
    font-size: 26px;
    font-weight: 700;
    color: #ffa500;
    margin: 0 24px 20px;
}

.btn-select-service {
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    padding: 14px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: #ffa500;
}

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

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

.form-left {
    flex: 1;
    color: #ffffff;
}

.form-left h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.form-left p {
    font-size: 17px;
    color: #ccc;
    line-height: 1.7;
}

.form-right {
    flex: 1;
}

.contact-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 16px;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
}

.contact-form textarea {
    resize: vertical;
}

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

.btn-submit:hover {
    background: #ff8c00;
}

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

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

.why-grid {
    display: flex;
    gap: 50px;
    justify-content: space-between;
}

.why-item {
    flex: 1;
}

.why-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

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

.footer {
    background: #2d2d2d;
    color: #fff;
    padding: 60px 40px 20px;
}

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

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

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

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

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

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

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 6px;
    font-size: 13px;
    color: #aaa;
    line-height: 1.6;
}

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

.page-header {
    background: #1a1a1a;
    color: #fff;
    padding: 80px 40px;
    text-align: center;
}

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

.page-header p {
    font-size: 18px;
    color: #ccc;
}

.content-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 40px;
}

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

.content-section h3 {
    font-size: 24px;
    margin-bottom: 16px;
    margin-top: 30px;
    color: #1a1a1a;
}

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

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

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

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

.about-split {
    display: flex;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

.about-split:nth-child(even) {
    flex-direction: row-reverse;
}

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

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

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

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

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

.contact-grid {
    display: flex;
    gap: 80px;
}

.contact-info {
    flex: 1;
}

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

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

.info-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #ffa500;
}

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

.contact-map {
    flex: 1;
    background: #f5f5f5;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.thanks-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 120px 40px;
    text-align: center;
}

.thanks-page h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #ffa500;
}

.thanks-page p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.thanks-page .cta-primary {
    margin-top: 32px;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .form-split,
    .about-split,
    .contact-grid {
        flex-direction: column;
        gap: 40px;
    }

    .about-split:nth-child(even) {
        flex-direction: column;
    }

    .why-grid {
        flex-direction: column;
        gap: 40px;
    }

    .service-card {
        flex: 1 1 calc(50% - 15px);
    }

    .hero-left h1 {
        font-size: 38px;
    }

    .nav-container {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .service-card {
        flex: 1 1 100%;
    }

    .nav-links {
        display: none;
    }

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

    .services-section,
    .why-section,
    .intro-section,
    .form-section,
    .about-hero,
    .contact-page {
        padding: 60px 20px;
    }

    .hero-split {
        padding: 60px 20px;
    }

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