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

.ad-notice {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

.main-nav {
    background-color: #ffffff;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c5f7d;
    text-decoration: none;
}

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

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

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

.hero-section {
    display: flex;
    min-height: 600px;
    background-color: #f8f9fa;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    background-color: #2c5f7d;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-image {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.cta-button {
    display: inline-block;
    padding: 15px 35px;
    background-color: #ffffff;
    color: #2c5f7d;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

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

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

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

.section-container.narrow {
    max-width: 800px;
}

.section-container.center {
    text-align: center;
}

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

.intro-section p {
    font-size: 18px;
    line-height: 1.8;
}

.trust-section {
    padding: 70px 20px;
    background-color: #f8f9fa;
}

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

.trust-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.trust-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background-color: #2c5f7d;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
}

.trust-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c5f7d;
}

.trust-item p {
    font-size: 16px;
    color: #555;
}

.services-overview {
    padding: 90px 20px;
    background-color: #ffffff;
}

.services-overview h2 {
    font-size: 42px;
    margin-bottom: 15px;
    text-align: center;
    color: #2c5f7d;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
}

.services-stacked {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-card {
    display: flex;
    min-height: 350px;
    background-color: #ffffff;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    border-radius: 8px;
}

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

.service-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-width: 400px;
}

.service-content {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c5f7d;
}

.service-content p {
    font-size: 17px;
    margin-bottom: 25px;
    line-height: 1.7;
    color: #555;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #2c5f7d;
    margin-bottom: 25px;
}

.select-service-btn {
    padding: 14px 30px;
    background-color: #2c5f7d;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.select-service-btn:hover {
    background-color: #1f4a5f;
    transform: translateY(-2px);
}

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

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

.form-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
    text-align: center;
    color: #2c5f7d;
}

.form-section > .section-container > p {
    text-align: center;
    font-size: 17px;
    color: #666;
    margin-bottom: 40px;
}

.contact-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.form-notice {
    background-color: #fff3cd;
    color: #856404;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 25px;
    border: 1px solid #ffeaa7;
}

.form-notice.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-notice.hidden {
    display: none;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.submit-btn {
    width: 100%;
    padding: 16px;
    background-color: #2c5f7d;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover:not(:disabled) {
    background-color: #1f4a5f;
}

.submit-btn:disabled {
    background-color: #adb5bd;
    cursor: not-allowed;
}

.testimonials-section {
    padding: 80px 20px;
    background-color: #2c5f7d;
    color: #ffffff;
}

.testimonials-section h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
}

.testimonials-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    background-color: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 8px;
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 15px;
    font-weight: 600;
    opacity: 0.9;
}

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

.cta-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2c5f7d;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
}

.cta-button-secondary {
    display: inline-block;
    padding: 15px 40px;
    background-color: #2c5f7d;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

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

.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 20px 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

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

.footer-column p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.8;
}

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

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

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

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

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

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 13px;
    line-height: 1.6;
    max-width: 900px;
    margin: 20px auto 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    padding: 25px 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;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    color: #2c3e50;
}

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background-color: #2c5f7d;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #1f4a5f;
}

.cookie-btn.reject {
    background-color: #e9ecef;
    color: #495057;
}

.cookie-btn.reject:hover {
    background-color: #dee2e6;
}

.about-hero {
    padding: 100px 20px;
    background-color: #2c5f7d;
    color: #ffffff;
    text-align: center;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
}

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

.about-section {
    margin-bottom: 60px;
}

.about-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c5f7d;
}

.about-section p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-image-section {
    display: flex;
    gap: 40px;
    align-items: center;
    margin: 60px 0;
    flex-wrap: wrap;
}

.about-image {
    flex: 1;
    min-width: 300px;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.services-page-hero {
    padding: 80px 20px;
    background-color: #f8f9fa;
    text-align: center;
}

.services-page-hero h1 {
    font-size: 44px;
    margin-bottom: 15px;
    color: #2c5f7d;
}

.services-page-hero p {
    font-size: 18px;
    color: #555;
}

.services-detail-section {
    padding: 80px 20px;
}

.contact-hero {
    padding: 80px 20px;
    background-color: #2c5f7d;
    color: #ffffff;
    text-align: center;
}

.contact-hero h1 {
    font-size: 44px;
    margin-bottom: 15px;
}

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

.contact-info-section {
    padding: 80px 20px;
}

.contact-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-info-block {
    flex: 1;
    min-width: 300px;
}

.contact-info-block h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c5f7d;
}

.contact-info-block p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.contact-info-block .email-text {
    color: #2c5f7d;
    font-weight: 600;
}

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background-color: #f8f9fa;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background-color: #28a745;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

.thanks-content h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2c5f7d;
}

.thanks-content p {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.7;
}

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

.legal-header {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
}

.legal-header h1 {
    font-size: 40px;
    margin-bottom: 15px;
    color: #2c5f7d;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

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

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

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-content ul {
    margin: 15px 0 15px 30px;
}

.legal-content ul li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 8px;
}

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

    .hero-content h1 {
        font-size: 36px;
    }

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

    .service-image {
        min-width: 100%;
        min-height: 250px;
    }

    .nav-links {
        gap: 15px;
    }

    .nav-links a {
        font-size: 14px;
    }

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

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