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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

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

.cookie-content a {
    color: #4a90e2;
    text-decoration: underline;
}

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

.btn-primary, .btn-secondary {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #4a90e2;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #357abd;
}

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

.btn-secondary:hover {
    background-color: #333333;
}

.main-header {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-top {
    background-color: #f8f9fa;
    padding: 8px 0;
}

.ad-disclosure {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    font-size: 12px;
    color: #666;
    text-align: center;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.main-nav {
    display: flex;
    gap: 30px;
}

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

.main-nav a:hover {
    color: #4a90e2;
}

.hero-magazine {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    display: flex;
    gap: 30px;
}

.hero-main {
    flex: 2;
    position: relative;
    background-color: #e8eef3;
}

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

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #ffffff;
    padding: 40px;
}

.hero-overlay h1 {
    font-size: 42px;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 18px;
    opacity: 0.95;
}

.hero-sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-card {
    background-color: #f8f9fa;
    padding: 30px;
    border-left: 4px solid #4a90e2;
}

.hero-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.hero-card p {
    margin-bottom: 20px;
    color: #555;
}

.btn-link {
    display: inline-block;
    color: #4a90e2;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.btn-link:hover {
    color: #357abd;
}

.intro-columns {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    display: flex;
    gap: 40px;
}

.intro-main {
    flex: 2;
}

.intro-main h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.intro-main p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

.intro-sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-box {
    background-color: #4a90e2;
    color: #ffffff;
    padding: 30px;
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

.services-magazine {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.services-magazine h2 {
    font-size: 42px;
    margin-bottom: 40px;
    text-align: center;
    color: #2c3e50;
}

.services-grid-magazine {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card.large {
    flex: 1 1 100%;
}

.service-card.wide {
    flex: 1 1 100%;
}

.service-card:not(.large):not(.wide) {
    flex: 1 1 calc(50% - 13px);
}

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

.service-card.large img {
    height: 350px;
}

.service-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-content p {
    margin-bottom: 20px;
    color: #555;
    flex: 1;
}

.service-price {
    font-size: 20px;
    font-weight: 700;
    color: #4a90e2;
    margin-bottom: 20px;
}

.btn-select-service {
    padding: 12px 24px;
    background-color: #4a90e2;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-select-service:hover {
    background-color: #357abd;
}

.service-content-split {
    display: flex;
    align-items: stretch;
}

.split-text {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

.service-content-split img {
    flex: 1;
    width: 50%;
    height: auto;
    object-fit: cover;
}

.process-section {
    background-color: #f8f9fa;
    padding: 80px 20px;
    margin: 80px 0;
}

.process-content {
    max-width: 1200px;
    margin: 0 auto;
}

.process-content h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    color: #2c3e50;
}

.process-steps {
    display: flex;
    gap: 30px;
}

.step {
    flex: 1;
    text-align: center;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #4a90e2;
    margin-bottom: 20px;
}

.step h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.step p {
    color: #555;
}

.testimonials-inline {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.testimonials-inline h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #2c3e50;
}

.testimonial-columns {
    display: flex;
    gap: 30px;
}

.testimonial {
    flex: 1;
    background-color: #f8f9fa;
    padding: 30px;
    border-left: 4px solid #4a90e2;
}

.testimonial p {
    font-size: 16px;
    font-style: italic;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    color: #2c3e50;
}

.cta-form-section {
    max-width: 800px;
    margin: 80px auto;
    padding: 0 20px;
}

.form-wrapper {
    background-color: #ffffff;
    border: 2px solid #4a90e2;
    padding: 50px;
}

.form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #2c3e50;
    text-align: center;
}

.form-wrapper > p {
    text-align: center;
    margin-bottom: 40px;
    color: #555;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid #ddd;
    font-size: 16px;
    font-family: inherit;
}

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

.btn-submit {
    padding: 15px 30px;
    background-color: #4a90e2;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #357abd;
}

.trust-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.trust-section h3 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
    color: #2c3e50;
}

.trust-grid {
    display: flex;
    gap: 30px;
}

.trust-item {
    flex: 1;
    background-color: #f8f9fa;
    padding: 40px 30px;
    text-align: center;
}

.trust-item h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

.main-footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px 20px 20px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: flex;
    gap: 50px;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-column p {
    line-height: 1.8;
    opacity: 0.9;
}

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

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

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

.footer-column ul li a:hover {
    opacity: 1;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 30px;
    background-color: rgba(255,255,255,0.05);
    font-size: 14px;
    line-height: 1.8;
    border-left: 3px solid #4a90e2;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 14px;
    opacity: 0.8;
}

.thanks-container {
    max-width: 800px;
    margin: 100px auto;
    padding: 60px;
    text-align: center;
    background-color: #f8f9fa;
    border: 2px solid #4a90e2;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-container p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #555;
}

.thanks-container .btn-primary {
    margin-top: 30px;
    padding: 15px 40px;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
}

.page-content {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

.page-content h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.page-content h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: #2c3e50;
}

.page-content h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: #2c3e50;
}

.page-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
}

.page-content ul, .page-content ol {
    margin: 20px 0 20px 30px;
    line-height: 1.8;
    color: #555;
}

.page-content li {
    margin-bottom: 10px;
}

.contact-info-section {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

.contact-info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.contact-info-card {
    flex: 1;
    min-width: 280px;
    background-color: #f8f9fa;
    padding: 30px;
    border-left: 4px solid #4a90e2;
}

.contact-info-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

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

.about-hero img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    background-color: #e8eef3;
}

.about-content {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

.about-content h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.about-content h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: #2c3e50;
}

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

.values-grid {
    display: flex;
    gap: 30px;
    margin: 40px 0;
}

.value-item {
    flex: 1;
    background-color: #f8f9fa;
    padding: 30px;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.value-item p {
    color: #555;
}

.services-list-page {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.services-list-page h1 {
    font-size: 42px;
    margin-bottom: 50px;
    text-align: center;
    color: #2c3e50;
}

.service-detail {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    background-color: #f8f9fa;
    padding: 40px;
}

.service-detail:nth-child(even) {
    flex-direction: row-reverse;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
}

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

.service-detail-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    background-color: #e8eef3;
}

.service-detail-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-detail-content p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

.service-detail-price {
    font-size: 22px;
    font-weight: 700;
    color: #4a90e2;
    margin-bottom: 20px;
}

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

    .intro-columns {
        flex-direction: column;
    }

    .services-grid-magazine .service-card {
        flex: 1 1 100%;
    }

    .service-content-split {
        flex-direction: column;
    }

    .service-content-split img {
        width: 100%;
    }

    .process-steps {
        flex-direction: column;
    }

    .testimonial-columns {
        flex-direction: column;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .contact-info-grid {
        flex-direction: column;
    }

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

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

    .service-detail:nth-child(even) {
        flex-direction: column;
    }
}