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

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5aa0;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

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

.nav-links a:hover {
    color: #2c5aa0;
}

.ad-disclosure {
    font-size: 0.85rem;
    color: #7f8c8d;
    font-style: italic;
    padding-left: 20px;
    border-left: 1px solid #ecf0f1;
}

.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: #34495e;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.85), rgba(52, 73, 94, 0.75));
    display: flex;
    align-items: center;
}

.hero-overlay h1 {
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 1.3rem;
    color: #ecf0f1;
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-cta {
    display: inline-block;
    padding: 15px 35px;
    background-color: #ffffff;
    color: #2c5aa0;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.hero-cta:hover {
    background-color: #2c5aa0;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.intro-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.intro-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #2c3e50;
}

.intro-section p {
    font-size: 1.15rem;
    color: #34495e;
    margin-bottom: 20px;
}

.values-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.values-grid {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.value-card {
    flex: 1;
    text-align: center;
    padding: 30px;
}

.value-icon {
    color: #2c5aa0;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.value-card p {
    color: #7f8c8d;
    font-size: 1rem;
}

.services-preview {
    padding: 80px 20px;
    background-color: #ecf0f1;
}

.services-preview h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 20px;
    color: #2c3e50;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.service-blocks {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-block {
    display: flex;
    gap: 50px;
    align-items: center;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

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

.service-image {
    flex: 1;
    min-height: 350px;
    background-size: cover;
    background-position: center;
    border-radius: 6px;
    background-color: #95a5a6;
}

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

.service-info {
    flex: 1;
}

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

.service-info p {
    font-size: 1.1rem;
    color: #34495e;
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c5aa0;
    margin-bottom: 20px;
}

.service-price span {
    font-size: 1rem;
    font-weight: 400;
    color: #7f8c8d;
}

.service-select-btn {
    padding: 12px 30px;
    background-color: #2c5aa0;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-select-btn:hover {
    background-color: #1e3a6d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 90, 160, 0.3);
}

.testimonial-section {
    padding: 80px 20px;
    background-color: #2c5aa0;
}

.testimonial {
    text-align: center;
}

.testimonial-text {
    font-size: 1.6rem;
    color: #ffffff;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author {
    font-size: 1.1rem;
    color: #ecf0f1;
    font-weight: 500;
}

.contact-form-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.contact-form-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-form {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
    flex: 1;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    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: #2c5aa0;
}

.form-submit {
    width: 100%;
    padding: 15px;
    background-color: #2c5aa0;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background-color: #1e3a6d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 90, 160, 0.3);
}

.disclaimer-section {
    padding: 60px 20px;
    background-color: #ecf0f1;
}

.disclaimer-text {
    font-size: 0.9rem;
    color: #7f8c8d;
    line-height: 1.7;
    text-align: center;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 20px 30px;
}

.footer-columns {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #95a5a6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.2);
    z-index: 2000;
    display: none;
}

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #27ae60;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #229954;
}

.btn-reject {
    background-color: #7f8c8d;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #5d6d7e;
}

.thanks-message {
    padding: 100px 20px;
    text-align: center;
}

.thanks-message h1 {
    font-size: 3rem;
    color: #2c5aa0;
    margin-bottom: 20px;
}

.thanks-message p {
    font-size: 1.3rem;
    color: #34495e;
    margin-bottom: 15px;
}

.selected-service-info {
    background-color: #ecf0f1;
    padding: 30px;
    border-radius: 8px;
    margin: 40px auto;
    max-width: 600px;
}

.selected-service-info h3 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.contact-page {
    padding: 80px 20px;
}

.contact-page h1 {
    font-size: 3rem;
    margin-bottom: 30px;
    color: #2c3e50;
}

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

.contact-info-item {
    margin-bottom: 25px;
}

.contact-info-item h3 {
    color: #2c5aa0;
    margin-bottom: 10px;
}

.contact-info-item p {
    color: #34495e;
    font-size: 1.1rem;
}

.services-page {
    padding: 80px 20px;
}

.services-page h1 {
    font-size: 3rem;
    margin-bottom: 40px;
    color: #2c3e50;
    text-align: center;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    flex: 1 1 calc(50% - 15px);
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.service-card h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.service-card p {
    color: #34495e;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-card .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c5aa0;
}

.about-page {
    padding: 80px 20px;
}

.about-page h1 {
    font-size: 3rem;
    margin-bottom: 30px;
    color: #2c3e50;
}

.about-content {
    font-size: 1.15rem;
    color: #34495e;
    line-height: 1.8;
}

.about-content p {
    margin-bottom: 20px;
}

.about-image {
    margin: 40px 0;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    background-color: #95a5a6;
}

.legal-page {
    padding: 80px 20px;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #2c3e50;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2c5aa0;
}

.legal-page p {
    color: #34495e;
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-page ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-page li {
    color: #34495e;
    line-height: 1.8;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        gap: 15px;
    }

    .hero-overlay h1 {
        font-size: 2.5rem;
    }

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

    .service-block,
    .service-block.reverse {
        flex-direction: column;
    }

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

    .form-row {
        flex-direction: column;
    }

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

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

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