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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 24px;
    z-index: 10000;
    display: none;
}

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

.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: 300px;
}

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

.btn-accept, .btn-reject {
    padding: 12px 28px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

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

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

.btn-reject:hover {
    background: #fff;
    color: #1a1a1a;
}

.navbar {
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.ad-disclosure {
    font-size: 13px;
    color: #7f8c8d;
    font-style: italic;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

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

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

.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-subtitle {
    font-size: 19px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 32px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.hero-right {
    flex: 1;
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
}

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

.features-alternating {
    background: #f8f9fa;
    padding: 100px 0;
}

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

.feature-row:last-child {
    margin-bottom: 0;
}

.feature-image-left,
.feature-image-right {
    flex: 1;
    background: #e8ecef;
    border-radius: 12px;
    overflow: hidden;
}

.feature-image-left img,
.feature-image-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.feature-content-right,
.feature-content-left {
    flex: 1;
}

.feature-content-right h2,
.feature-content-left h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.feature-content-right p,
.feature-content-left p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

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

.services-intro {
    text-align: center;
    margin-bottom: 60px;
}

.services-intro h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.services-intro p {
    font-size: 18px;
    color: #666;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    width: calc(33.333% - 24px);
    min-width: 320px;
    transition: transform 0.3s ease;
    position: relative;
}

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

.service-card.featured {
    border: 3px solid #3498db;
}

.featured-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #3498db;
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    z-index: 10;
}

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

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

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

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

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

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

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

.form-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.form-left-content {
    flex: 1;
}

.form-left-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.selected-service-info {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.selected-service-info strong {
    display: block;
    margin-bottom: 8px;
    color: #2c3e50;
}

.selected-service-info span {
    color: #3498db;
    font-weight: 600;
    font-size: 18px;
}

.form-right {
    flex: 1;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.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: 12px 16px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    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;
}

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

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

.trust-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 40px;
    text-align: center;
}

.trust-section h2 {
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.trust-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.trust-item {
    flex: 1;
    max-width: 350px;
}

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

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

.footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 40px 30px 40px;
}

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

.footer-column {
    flex: 1;
}

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

.footer-column p {
    line-height: 1.7;
    color: #bdc3c7;
}

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

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

.footer-column a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px auto;
    padding: 24px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.6;
    color: #bdc3c7;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: #95a5a6;
}

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

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

.about-hero p {
    font-size: 19px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

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

.about-image {
    flex: 1;
    background: #e8ecef;
    border-radius: 12px;
    overflow: hidden;
}

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

.about-content {
    flex: 1;
}

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

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

.services-page-hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px 40px 40px;
    text-align: center;
}

.services-page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.services-page-hero p {
    font-size: 19px;
    color: #666;
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 40px;
}

.contact-container h1 {
    font-size: 48px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.contact-info {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 40px;
}

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

.contact-item:last-child {
    margin-bottom: 0;
}

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

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

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

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

.legal-page .last-updated {
    font-size: 15px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

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

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

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

.legal-page ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

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

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

.thanks-icon {
    font-size: 80px;
    color: #27ae60;
    margin-bottom: 24px;
}

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

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

.thanks-service-box {
    background: #f8f9fa;
    padding: 24px;
    border-radius: 12px;
    margin: 32px 0;
    border-left: 4px solid #3498db;
}

.thanks-service-box strong {
    display: block;
    font-size: 16px;
    color: #2c3e50;
    margin-bottom: 8px;
}

.thanks-service-box span {
    font-size: 20px;
    color: #3498db;
    font-weight: 600;
}

.btn-back-home {
    display: inline-block;
    margin-top: 32px;
    padding: 16px 40px;
    background: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s ease;
}

.btn-back-home:hover {
    background: #2980b9;
}

@media (max-width: 1024px) {
    .hero-split,
    .feature-row,
    .form-container,
    .about-split {
        flex-direction: column;
    }

    .trust-grid,
    .footer-content {
        flex-direction: column;
    }

    .service-card {
        width: calc(50% - 16px);
    }
}

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

    .nav-menu {
        gap: 20px;
    }

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

    .service-card {
        width: 100%;
    }

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