* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

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

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a73e8;
}

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

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

.main-nav a:hover {
    color: #1a73e8;
}

.ad-label {
    background: #fef3e2;
    color: #996300;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
}

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    gap: 4rem;
    align-items: center;
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-left h1 {
    font-size: 3rem;
    line-height: 1.2;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-left p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.7;
}

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

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

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

.cta-primary:hover {
    background: #1557b0;
}

.split-section {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
    gap: 4rem;
    align-items: center;
}

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

.split-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.split-content h2 {
    font-size: 2.2rem;
    color: #1a1a1a;
    font-weight: 700;
}

.split-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}

.split-image {
    flex: 1;
    background: #f5f5f5;
    border-radius: 12px;
    overflow: hidden;
    min-height: 400px;
}

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

.services-section {
    background: #f9f9f9;
    padding: 5rem 2rem;
}

.services-intro {
    max-width: 1400px;
    margin: 0 auto 3rem;
    text-align: center;
}

.services-intro h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
}

.services-intro p {
    font-size: 1.2rem;
    color: #555;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
}

.service-card p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    flex-grow: 1;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a73e8;
    margin-top: 0.5rem;
}

.select-service {
    background: #1a73e8;
    color: #fff;
    border: none;
    padding: 0.9rem 1.5rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.select-service:hover {
    background: #1557b0;
}

.form-section {
    padding: 5rem 2rem;
    background: #fff;
}

.form-container-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: stretch;
}

.form-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    justify-content: center;
}

.form-left h2 {
    font-size: 2.2rem;
    color: #1a1a1a;
}

.form-left p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}

.form-right {
    flex: 1;
    background: #f9f9f9;
    padding: 2.5rem;
    border-radius: 12px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    background: #1a73e8;
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #1557b0;
}

.trust-section {
    background: #f9f9f9;
    padding: 5rem 2rem;
}

.trust-content {
    max-width: 1400px;
    margin: 0 auto;
}

.trust-content h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 3rem;
    text-align: center;
}

.trust-grid {
    display: flex;
    gap: 3rem;
}

.trust-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
}

.trust-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    background: #f5f5f5;
}

.trust-item h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
}

.trust-item p {
    color: #555;
    line-height: 1.7;
}

.main-footer {
    background: #1a1a1a;
    color: #fff;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto 2rem;
    display: flex;
    gap: 3rem;
}

.footer-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

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

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

.footer-column p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.6;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.95);
    color: #fff;
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: #4fc3f7;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

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

.btn-accept:hover {
    opacity: 0.9;
}

.btn-reject {
    background: #666;
    color: #fff;
}

.btn-reject:hover {
    opacity: 0.9;
}

.page-hero {
    background: linear-gradient(135deg, #1a73e8 0%, #1557b0 100%);
    padding: 5rem 2rem;
    text-align: center;
    color: #fff;
}

.hero-content-center {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content-center h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content-center p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.values-section {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.values-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.values-grid {
    display: flex;
    gap: 2rem;
}

.value-card {
    flex: 1;
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 12px;
}

.value-card h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
}

.value-card p {
    color: #555;
    line-height: 1.7;
}

.cta-section {
    background: #1a73e8;
    padding: 5rem 2rem;
    text-align: center;
    color: #fff;
}

.cta-content-centered {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.cta-content-centered h2 {
    font-size: 2.5rem;
}

.cta-content-centered p {
    font-size: 1.2rem;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background: #fff;
    color: #1a73e8;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.3s;
}

.cta-button:hover {
    transform: scale(1.05);
}

.services-detail-section {
    padding: 3rem 2rem;
}

.services-detail-section.alt-bg {
    background: #f9f9f9;
}

.service-detail-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

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

.service-detail-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    color: #1a1a1a;
}

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

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.service-features li {
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.service-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: 700;
}

.price-detail {
    font-size: 2rem;
    font-weight: 700;
    color: #1a73e8;
    margin-top: 1rem;
}

.service-detail-image {
    flex: 1;
    background: #f5f5f5;
    border-radius: 12px;
    overflow: hidden;
    min-height: 450px;
}

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

.contact-split-section {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
}

.contact-info-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-side h2 {
    font-size: 2.2rem;
    color: #1a1a1a;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #555;
    line-height: 1.8;
}

.contact-map-side {
    flex: 1;
    background: #f5f5f5;
    border-radius: 12px;
    overflow: hidden;
    min-height: 500px;
}

.contact-map-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-additional {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.additional-content {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.additional-content h2 {
    font-size: 2rem;
    color: #1a1a1a;
}

.additional-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}

.additional-content a {
    color: #1a73e8;
    text-decoration: none;
    font-weight: 600;
}

.additional-content a:hover {
    text-decoration: underline;
}

.thanks-section {
    padding: 5rem 2rem;
    background: #f9f9f9;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.thanks-icon {
    margin-bottom: 1rem;
}

.thanks-content h1 {
    font-size: 2.5rem;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.7;
}

.selected-service-info {
    background: #e3f2fd;
    padding: 1rem 2rem;
    border-radius: 8px;
}

.service-selected {
    font-size: 1.1rem;
    color: #1565c0;
    margin: 0;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.btn-primary {
    display: inline-block;
    background: #1a73e8;
    color: #fff;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #1557b0;
}

.btn-secondary {
    display: inline-block;
    background: #fff;
    color: #1a73e8;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid #1a73e8;
    transition: background 0.3s;
}

.btn-secondary:hover {
    background: #f0f7ff;
}

.next-steps {
    padding: 4rem 2rem;
}

.next-steps-content {
    max-width: 1400px;
    margin: 0 auto;
}

.next-steps-content h2 {
    font-size: 2.2rem;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 3rem;
}

.steps-grid {
    display: flex;
    gap: 2rem;
}

.step-item {
    flex: 1;
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #1a73e8;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-item h3 {
    font-size: 1.3rem;
    color: #1a1a1a;
}

.step-item p {
    color: #555;
    line-height: 1.7;
}

.legal-page {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.legal-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.legal-content h1 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-top: 2rem;
}

.legal-content h3 {
    font-size: 1.3rem;
    color: #333;
    margin-top: 1rem;
}

.legal-content p {
    color: #555;
    line-height: 1.8;
}

.legal-content ul {
    padding-left: 2rem;
    color: #555;
    line-height: 1.8;
}

.legal-content a {
    color: #1a73e8;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

@media (max-width: 968px) {
    .hero-split,
    .split-section,
    .form-container-split,
    .trust-grid,
    .values-grid,
    .service-detail-split,
    .contact-split-section,
    .steps-grid {
        flex-direction: column;
    }

    .split-section.reverse {
        flex-direction: column;
    }

    .hero-left h1,
    .hero-content-center h1 {
        font-size: 2rem;
    }

    .main-nav {
        flex-wrap: wrap;
        gap: 1rem;
    }

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