* {
    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-color: #ffffff;
}

.layout-container {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 280px;
    background-color: #1a2332;
    color: #ffffff;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    z-index: 100;
}

.sidebar-content {
    display: flex;
    flex-direction: column;
    padding: 2rem 1.5rem;
    min-height: 100%;
}

.logo h1 {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    color: #ffffff;
    line-height: 1.3;
}

.main-nav {
    display: flex;
    flex-direction: column;
    margin-bottom: auto;
}

.main-nav a {
    color: #b8c5d6;
    text-decoration: none;
    padding: 0.9rem 1rem;
    margin-bottom: 0.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.main-nav a:hover {
    background-color: #2a3b4f;
    color: #ffffff;
}

.main-nav a.active {
    background-color: #3b5273;
    color: #ffffff;
    font-weight: 500;
}

.ad-disclosure {
    margin-top: 2rem;
    padding: 1rem;
    background-color: #2a3b4f;
    border-radius: 6px;
}

.ad-disclosure small {
    font-size: 0.75rem;
    color: #8fa3b8;
    line-height: 1.4;
}

.sidebar-footer {
    display: flex;
    flex-direction: column;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #2a3b4f;
}

.sidebar-footer a {
    color: #8fa3b8;
    text-decoration: none;
    font-size: 0.85rem;
    margin-bottom: 0.6rem;
    transition: color 0.3s ease;
}

.sidebar-footer a:hover {
    color: #ffffff;
}

.main-content {
    margin-left: 280px;
    flex: 1;
    width: calc(100% - 280px);
}

.hero-section {
    display: flex;
    flex-direction: column;
    background-color: #f8f9fb;
    padding: 4rem 3rem;
}

.hero-text {
    margin-bottom: 2rem;
}

.hero-text h2 {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
    color: #1a2332;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.25rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
    max-width: 600px;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #2563eb;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-button:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
}

.cta-button.secondary {
    background-color: #64748b;
}

.cta-button.secondary:hover {
    background-color: #475569;
}

.hero-image {
    width: 100%;
    background-color: #e5e7eb;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.intro-section {
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
}

.intro-content {
    margin-bottom: 3rem;
}

.intro-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a2332;
}

.intro-content p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.intro-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: #64748b;
}

.services-preview {
    padding: 4rem 3rem;
    background-color: #f8f9fb;
}

.services-preview h3 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: #1a2332;
    text-align: center;
}

.services-grid {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

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

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

.service-card h4 {
    font-size: 1.4rem;
    margin: 1.5rem 1.5rem 0.8rem;
    color: #1a2332;
}

.service-card p {
    font-size: 1rem;
    color: #64748b;
    padding: 0 1.5rem;
    margin-bottom: 1.5rem;
}

.service-card .price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2563eb;
    padding: 0 1.5rem 1.5rem;
    margin-top: auto;
}

.services-link {
    text-align: center;
    margin-top: 2rem;
}

.services-link a {
    color: #2563eb;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.services-link a:hover {
    color: #1d4ed8;
}

.trust-section {
    padding: 4rem 3rem;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.trust-content {
    flex: 1;
}

.trust-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a2332;
}

.trust-content p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.trust-list li {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    font-size: 1.05rem;
    color: #5a6c7d;
}

.trust-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

.trust-image {
    flex: 1;
    background-color: #e5e7eb;
}

.trust-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.testimonials-section {
    padding: 4rem 3rem;
    background-color: #f8f9fb;
}

.testimonials-section h3 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: #1a2332;
    text-align: center;
}

.testimonials-container {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

.testimonial p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 1rem;
    line-height: 1.7;
    font-style: italic;
}

.testimonial .author {
    font-size: 0.95rem;
    color: #64748b;
    font-weight: 500;
}

.contact-section {
    padding: 4rem 3rem;
    display: flex;
    gap: 3rem;
}

.form-wrapper {
    flex: 1;
}

.form-wrapper h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.form-wrapper > p {
    font-size: 1.05rem;
    color: #64748b;
    margin-bottom: 2rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.submit-button {
    padding: 1rem 2.5rem;
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
}

.contact-visual {
    flex: 1;
    background-color: #e5e7eb;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.disclaimer-section {
    padding: 3rem;
    background-color: #fef3c7;
    border-left: 4px solid #f59e0b;
}

.disclaimer-section p {
    font-size: 0.95rem;
    color: #78350f;
    line-height: 1.7;
}

.main-footer {
    background-color: #1a2332;
    color: #ffffff;
    padding: 3rem;
}

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

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

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-column p,
.footer-column a {
    font-size: 0.95rem;
    color: #b8c5d6;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

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

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

.footer-bottom p {
    font-size: 0.9rem;
    color: #8fa3b8;
}

.page-header {
    padding: 3rem 3rem 2rem;
    background-color: #f8f9fb;
}

.page-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    color: #1a2332;
}

.page-header p {
    font-size: 1.15rem;
    color: #64748b;
}

.services-detail {
    padding: 3rem;
}

.service-detail-item {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

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

.service-detail-content {
    flex: 1;
}

.service-detail-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.service-detail-content p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-detail-content ul li {
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    position: relative;
    color: #5a6c7d;
}

.service-detail-content ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2563eb;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.price-label {
    font-size: 1rem;
    color: #64748b;
}

.price-amount {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2563eb;
}

.service-cta {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background-color: #2563eb;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-cta:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
}

.service-detail-image {
    flex: 1;
    background-color: #e5e7eb;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.about-intro {
    padding: 3rem;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a2332;
}

.about-text p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 1rem;
    line-height: 1.8;
}

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

.about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.values-section {
    padding: 4rem 3rem;
    background-color: #f8f9fb;
}

.values-section h3 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: #1a2332;
    text-align: center;
}

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

.value-card {
    flex: 1;
    min-width: 240px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
}

.value-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.value-card p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
}

.team-section {
    padding: 4rem 3rem;
}

.team-section h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.team-section p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.team-image {
    background-color: #e5e7eb;
}

.team-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.approach-section {
    padding: 4rem 3rem;
    background-color: #f8f9fb;
}

.approach-section h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a2332;
}

.approach-content p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.stats-section {
    padding: 4rem 3rem;
}

.stats-section h3 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: #1a2332;
    text-align: center;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background-color: #f8f9fb;
    border-radius: 8px;
    min-width: 180px;
}

.cta-section {
    padding: 4rem 3rem;
    background-color: #f8f9fb;
    text-align: center;
}

.cta-section h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.cta-section p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-info-section {
    padding: 3rem;
    display: flex;
    gap: 3rem;
}

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

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

.contact-item p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.8;
}

.response-info {
    padding: 3rem;
    background-color: #f8f9fb;
}

.response-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.response-info p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.8;
}

.thanks-section {
    padding: 4rem 3rem;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.thanks-content {
    flex: 1;
}

.thanks-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.thanks-content > p {
    font-size: 1.15rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
}

.thanks-service {
    margin-bottom: 2rem;
    padding: 1rem;
    background-color: #f8f9fb;
    border-radius: 6px;
}

.thanks-service p {
    font-size: 1.05rem;
    color: #1a2332;
}

.thanks-next h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.thanks-next ul {
    list-style: none;
    margin-bottom: 2rem;
}

.thanks-next ul li {
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    position: relative;
    color: #5a6c7d;
    font-size: 1.05rem;
}

.thanks-next ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

.thanks-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.thanks-image {
    flex: 1;
    background-color: #e5e7eb;
}

.thanks-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.legal-content {
    padding: 3rem;
    max-width: 900px;
}

.legal-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a2332;
}

.legal-content h3 {
    font-size: 1.6rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.legal-content h4 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #1a2332;
}

.legal-content p {
    font-size: 1rem;
    color: #5a6c7d;
    margin-bottom: 1rem;
    line-height: 1.8;
}

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

.legal-content ul li {
    font-size: 1rem;
    color: #5a6c7d;
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a2332;
    color: #ffffff;
    padding: 1.5rem 2rem;
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    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;
    font-size: 0.95rem;
    color: #b8c5d6;
    margin: 0;
}

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

.cookie-buttons button {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-buttons button:first-child {
    background-color: #2563eb;
    color: #ffffff;
}

.cookie-buttons button:first-child:hover {
    background-color: #1d4ed8;
}

.cookie-buttons button:last-child {
    background-color: #64748b;
    color: #ffffff;
}

.cookie-buttons button:last-child:hover {
    background-color: #475569;
}

@media (max-width: 1024px) {
    .sidebar {
        width: 240px;
    }

    .main-content {
        margin-left: 240px;
        width: calc(100% - 240px);
    }
}

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

    .sidebar {
        width: 100%;
        height: auto;
        position: relative;
    }

    .main-content {
        margin-left: 0;
        width: 100%;
    }

    .hero-text h2 {
        font-size: 2rem;
    }

    .services-grid {
        flex-direction: column;
    }

    .trust-section,
    .contact-section,
    .service-detail-item,
    .about-intro,
    .contact-info-section,
    .thanks-section {
        flex-direction: column;
    }

    .service-detail-item.reverse {
        flex-direction: column;
    }

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