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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #ffffff;
    padding: 1.5rem;
    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: 1rem;
}

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

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

.btn-cookie {
    padding: 0.6rem 1.5rem;
    border: none;
    background: #0066cc;
    color: #ffffff;
    cursor: pointer;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: background 0.3s;
}

.btn-cookie:hover {
    background: #0052a3;
}

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

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

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0066cc;
    text-decoration: none;
}

.header-right {
    display: flex;
    gap: 2rem;
}

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

.header-right a:hover {
    color: #0066cc;
}

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 5%;
    background: #f8f9fa;
}

.hero-text h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #4a4a4a;
    max-width: 550px;
}

.hero-right {
    flex: 1;
    background: #0066cc;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #0066cc;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 6px;
    transition: all 0.3s;
}

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

.story-section {
    display: flex;
    padding: 6rem 5%;
    gap: 4rem;
    align-items: center;
}

.story-content {
    flex: 1.2;
}

.story-content h2 {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.story-content p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.story-image {
    flex: 1;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.insight-block {
    display: flex;
    background: #1a1a1a;
    color: #ffffff;
}

.insight-left {
    flex: 1;
    overflow: hidden;
}

.insight-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.insight-right {
    flex: 1;
    padding: 5rem 4rem;
}

.insight-right h3 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.pillar {
    margin-bottom: 2.5rem;
}

.pillar h4 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #0066cc;
}

.pillar p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #cccccc;
}

.testimonial-flow {
    padding: 5rem 10%;
    background: #f8f9fa;
}

.testimonial-flow blockquote {
    margin-bottom: 3rem;
    padding: 2rem;
    background: #ffffff;
    border-left: 4px solid #0066cc;
}

.testimonial-flow p {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #2c2c2c;
    margin-bottom: 1rem;
}

.testimonial-flow cite {
    font-style: normal;
    color: #666666;
    font-size: 1rem;
}

.services-showcase {
    padding: 6rem 5%;
    background: #ffffff;
}

.services-intro {
    text-align: center;
    margin-bottom: 4rem;
}

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

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

.service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.service-card {
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    width: calc(50% - 1.25rem);
    min-width: 350px;
    transition: transform 0.3s;
}

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

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

.service-details {
    padding: 2rem;
}

.service-details h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-details p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
    line-height: 1.6;
}

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

.btn-select-service {
    width: 100%;
    padding: 1rem;
    background: #0066cc;
    color: #ffffff;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 6px;
    transition: background 0.3s;
}

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

.btn-select-service.selected {
    background: #28a745;
}

.trust-section {
    display: flex;
    padding: 6rem 5%;
    gap: 4rem;
    align-items: center;
    background: #f8f9fa;
}

.trust-left {
    flex: 1;
}

.trust-left h3 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.trust-left p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.cta-inline {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    border-radius: 6px;
    transition: background 0.3s;
}

.cta-inline:hover {
    background: #333333;
}

.trust-right {
    flex: 1;
}

.trust-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.urgency-block {
    padding: 4rem 5%;
    background: #0066cc;
    color: #ffffff;
    text-align: center;
}

.urgency-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.urgency-content p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
}

.form-section {
    padding: 6rem 5%;
    background: #f8f9fa;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-header h2 {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.form-header p {
    font-size: 1.05rem;
    color: #4a4a4a;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #cccccc;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

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

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: #0066cc;
    color: #ffffff;
    border: none;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 6px;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #0052a3;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.sticky-btn {
    display: block;
    padding: 1rem 2rem;
    background: #28a745;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    transition: all 0.3s;
}

.sticky-btn:hover {
    background: #218838;
    transform: scale(1.05);
}

.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 4rem 5% 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

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

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-col p {
    color: #cccccc;
    line-height: 1.6;
}

.footer-col a {
    display: block;
    color: #cccccc;
    text-decoration: none;
    margin-bottom: 0.7rem;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #0066cc;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333333;
    color: #999999;
}

@media (max-width: 768px) {
    .hero-split {
        flex-direction: column;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .story-section {
        flex-direction: column;
    }

    .insight-block {
        flex-direction: column;
    }

    .service-card {
        width: 100%;
    }

    .trust-section {
        flex-direction: column;
    }

    .header-right {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

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

.contact-page-content {
    max-width: 800px;
    margin: 4rem auto;
    padding: 0 5%;
}

.contact-page-content h1 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
}

.contact-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #0066cc;
}

.contact-item p {
    font-size: 1.05rem;
    color: #4a4a4a;
}

.about-hero {
    padding: 5rem 5%;
    background: #f8f9fa;
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.about-hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    color: #4a4a4a;
}

.about-content {
    padding: 4rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.about-section {
    margin-bottom: 4rem;
}

.about-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.about-section p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 1rem;
}

.services-page-hero {
    padding: 5rem 5%;
    background: #0066cc;
    color: #ffffff;
    text-align: center;
}

.services-page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.services-page-hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
}

.services-detail-section {
    padding: 5rem 5%;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 5%;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.legal-page .last-updated {
    color: #666666;
    margin-bottom: 2rem;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-page p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 1rem;
}

.legal-page ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-page li {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 0.5rem;
}

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 5%;
    background: #f8f9fa;
}

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

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #28a745;
}

.thanks-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #4a4a4a;
}

.thanks-content .cta-primary {
    margin-top: 1rem;
}