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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.97);
    color: #fff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    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: rgba(255,255,255,0.1);
}

.main-header {
    background: #fff;
    border-bottom: 1px solid #e8e8e8;
    padding: 1.2rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.ad-disclosure {
    font-size: 0.8rem;
    color: #7f8c8d;
    padding: 0.3rem 0.8rem;
    background: #ecf0f1;
    border-radius: 4px;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

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

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

.hero-split {
    display: flex;
    min-height: 85vh;
    background: #f8f9fa;
}

.hero-left,
.hero-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-left {
    padding: 4rem 3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.hero-left h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-left p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-right {
    background: #e8e8e8;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #fff;
    color: #667eea;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.intro-split {
    display: flex;
    min-height: 70vh;
}

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

.intro-image,
.intro-text {
    flex: 1;
}

.intro-image {
    background: #d4d4d4;
    overflow: hidden;
}

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

.intro-text {
    padding: 5rem 4rem;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.intro-text p {
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    color: #555;
}

.services-overview {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

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

.section-header-centered h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.section-header-centered p {
    font-size: 1.2rem;
    color: #7f8c8d;
}

.services-grid-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-card {
    display: flex;
    min-height: 450px;
    background: #fff;
    border-bottom: 1px solid #e8e8e8;
}

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

.service-image,
.service-info {
    flex: 1;
}

.service-image {
    background: #ddd;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
}

.service-info {
    padding: 3.5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h3 {
    font-size: 1.9rem;
    margin-bottom: 1.2rem;
    color: #2c3e50;
}

.service-info p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.btn-select {
    padding: 1rem 2rem;
    background: #3498db;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-select:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.form-section-split {
    display: flex;
    min-height: 700px;
    background: #ecf0f1;
}

.form-left,
.form-right {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-left {
    background: #34495e;
    color: #fff;
}

.form-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.form-left p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.form-benefits {
    list-style: none;
    margin-top: 2rem;
}

.form-benefits li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
}

.form-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 1.3rem;
}

.form-right {
    background: #fff;
}

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

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

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

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

.trust-section {
    padding: 6rem 2rem;
    background: #fff;
}

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

.trust-container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #2c3e50;
}

.trust-grid {
    display: flex;
    gap: 3rem;
    justify-content: space-between;
}

.trust-item {
    flex: 1;
    text-align: center;
}

.trust-item h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #34495e;
}

.trust-item p {
    font-size: 1.05rem;
    color: #7f8c8d;
    line-height: 1.7;
}

.main-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

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

.footer-column h4 {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    color: #fff;
}

.footer-column p {
    margin-bottom: 0.5rem;
    color: #bdc3c7;
}

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

.footer-column ul li {
    margin-bottom: 0.7rem;
}

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

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background: rgba(52, 73, 94, 0.5);
    border-radius: 6px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #bdc3c7;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #95a5a6;
}

.contact-page {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

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

.contact-container h1 {
    font-size: 3rem;
    margin-bottom: 3rem;
    color: #2c3e50;
    text-align: center;
}

.contact-split {
    display: flex;
    gap: 4rem;
    background: #fff;
    padding: 4rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #34495e;
}

.contact-detail {
    margin-bottom: 2rem;
}

.contact-detail h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.contact-detail p {
    font-size: 1.05rem;
    color: #7f8c8d;
    line-height: 1.6;
}

.about-page {
    padding: 6rem 2rem;
    background: #fff;
}

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

.about-hero {
    text-align: center;
    margin-bottom: 5rem;
}

.about-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.about-hero p {
    font-size: 1.3rem;
    color: #7f8c8d;
    max-width: 700px;
    margin: 0 auto;
}

.about-split {
    display: flex;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: center;
}

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

.about-image {
    flex: 1;
    background: #ddd;
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
}

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

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.about-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.services-page {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

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

.services-header {
    text-align: center;
    margin-bottom: 5rem;
}

.services-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.services-header p {
    font-size: 1.3rem;
    color: #7f8c8d;
    max-width: 700px;
    margin: 0 auto;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-item-full {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    display: flex;
}

.service-item-full.reverse {
    flex-direction: row-reverse;
}

.service-img {
    flex: 1;
    background: #ddd;
    min-height: 350px;
}

.service-img img {
    width: 100%;
    height: 100%;
}

.service-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h3 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    color: #2c3e50;
}

.service-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-content .service-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.thanks-page {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
}

.thanks-container h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.thanks-container p {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.thanks-container a {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    background: #fff;
    color: #667eea;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.thanks-container a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.legal-page {
    padding: 6rem 2rem;
    background: #fff;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.legal-container h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #34495e;
}

.legal-container h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #34495e;
}

.legal-container p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.2rem;
}

.legal-container ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-container ul li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 0.5rem;
}

@media (max-width: 968px) {
    .hero-split,
    .intro-split,
    .service-card,
    .form-section-split,
    .contact-split,
    .about-split,
    .service-item-full {
        flex-direction: column;
    }

    .service-card.reverse,
    .intro-split.reverse,
    .about-split.reverse,
    .service-item-full.reverse {
        flex-direction: column;
    }

    .hero-left h1,
    .about-hero h1,
    .services-header h1 {
        font-size: 2.5rem;
    }

    .trust-grid {
        flex-direction: column;
        gap: 2rem;
    }

    .main-nav {
        width: 100%;
        justify-content: center;
    }

    .header-container {
        justify-content: center;
        text-align: center;
    }
}