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

.ad-disclosure {
    background-color: #34495e;
    color: #ecf0f1;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
}

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    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;
    height: 70px;
}

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

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

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

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

.hero-card {
    display: flex;
    flex-direction: column;
    background-color: #f8f9fa;
    margin: 40px auto;
    max-width: 1200px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hero-content {
    padding: 60px 40px;
    text-align: center;
}

.hero-content h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #2c3e50;
}

.hero-content p {
    font-size: 20px;
    color: #7f8c8d;
    margin-bottom: 0;
}

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

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

.story-section {
    padding: 80px 0;
}

.story-card {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
    max-width: 800px;
    margin: 0 auto;
}

.story-card h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.story-card p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.problem-section {
    background-color: #ecf0f1;
    padding: 80px 0;
}

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

.problem-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
}

.problem-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #e74c3c;
}

.problem-card p {
    font-size: 16px;
    color: #5a6c7d;
}

.solution-section {
    padding: 80px 0;
}

.solution-card-wrapper {
    display: flex;
    gap: 50px;
    align-items: center;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

.solution-text {
    flex: 1;
}

.solution-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.solution-text p {
    font-size: 18px;
    margin-bottom: 18px;
    color: #5a6c7d;
}

.solution-image {
    flex: 1;
    background-color: #bdc3c7;
    border-radius: 8px;
    overflow: hidden;
}

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

.services-preview {
    background-color: #f8f9fa;
    padding: 80px 0;
}

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

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.service-image {
    width: 100%;
    height: 240px;
    background-color: #bdc3c7;
    overflow: hidden;
}

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

.service-info {
    padding: 30px;
}

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

.service-info p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 15px;
}

.price {
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    color: #e67e22;
    margin-top: 10px;
}

.trust-section {
    padding: 80px 0;
}

.trust-card {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

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

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

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

.trust-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #27ae60;
}

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

.testimonials-section {
    background-color: #ecf0f1;
    padding: 80px 0;
}

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

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
}

.testimonial-card p {
    font-size: 16px;
    font-style: italic;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.testimonial-author {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
}

.form-section {
    padding: 80px 0;
}

.form-card {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 700px;
    margin: 0 auto;
}

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

.form-card > p {
    text-align: center;
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #dce0e4;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

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

.submit-btn {
    width: 100%;
    padding: 15px;
    background-color: #e67e22;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.disclaimer-section {
    background-color: #fef5e7;
    padding: 60px 0;
}

.disclaimer-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
}

.disclaimer-card p {
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.7;
}

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

.footer-content {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

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

.footer-column p {
    font-size: 14px;
    color: #bdc3c7;
    line-height: 1.6;
}

.footer-column a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
}

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    margin: 0;
}

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

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

.cookie-btn.reject {
    background-color: #95a5a6;
    color: #ffffff;
}

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

.page-hero {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 20px;
    color: #bdc3c7;
}

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

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

.about-text {
    flex: 1;
}

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

.about-text p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #5a6c7d;
}

.about-image {
    flex: 1;
    background-color: #bdc3c7;
    border-radius: 8px;
    overflow: hidden;
}

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

.values-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

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

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

.value-card {
    flex: 1;
    min-width: 250px;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #e67e22;
}

.value-card p {
    font-size: 16px;
    color: #5a6c7d;
}

.process-section {
    padding: 80px 0;
}

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

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

.process-card {
    flex: 1;
    min-width: 220px;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.process-number {
    font-size: 48px;
    font-weight: 700;
    color: #e67e22;
    margin-bottom: 20px;
}

.process-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.process-card p {
    font-size: 15px;
    color: #5a6c7d;
}

.team-section {
    background-color: #ecf0f1;
    padding: 80px 0;
}

.team-card {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

.team-card h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.team-card p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #5a6c7d;
}

.services-detail {
    padding: 60px 0;
}

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

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

.service-detail-image {
    flex: 1;
    background-color: #bdc3c7;
    border-radius: 8px;
    overflow: hidden;
}

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

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

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

.service-detail-content p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.service-detail-content ul {
    margin-bottom: 20px;
    padding-left: 25px;
}

.service-detail-content ul li {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 8px;
}

.service-price {
    font-size: 18px;
    font-weight: 700;
    color: #e67e22;
}

.materials-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.materials-card {
    max-width: 900px;
    margin: 0 auto;
}

.materials-card h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.materials-card > p {
    text-align: center;
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 40px;
}

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

.material-item {
    flex: 1;
    min-width: 200px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.material-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #27ae60;
}

.material-item p {
    font-size: 15px;
    color: #5a6c7d;
}

.cta-services {
    padding: 80px 0;
}

.cta-card {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px;
    border-radius: 12px;
    text-align: center;
}

.cta-card h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

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

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: #e67e22;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

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

.contact-content {
    padding: 60px 0;
}

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

.contact-card {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

.contact-card h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #2c3e50;
}

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

.contact-info-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #e67e22;
}

.contact-info-item p {
    font-size: 16px;
    color: #5a6c7d;
}

.contact-map-card {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

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

.contact-map-card p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 15px;
}

.visit-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.visit-card {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

.visit-card h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.visit-card p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.visit-card ul {
    margin-bottom: 20px;
    padding-left: 25px;
}

.visit-card ul li {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 10px;
}

.faq-section {
    padding: 80px 0;
}

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

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

.faq-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.faq-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.faq-card p {
    font-size: 15px;
    color: #5a6c7d;
}

.thanks-section {
    padding: 100px 0;
}

.thanks-card {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.thanks-card h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #27ae60;
}

.thanks-card > p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 40px;
}

.thanks-info {
    text-align: left;
    margin-bottom: 30px;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

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

.thanks-info ol {
    padding-left: 25px;
}

.thanks-info ol li {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 10px;
}

.thanks-service {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #e8f5e9;
    border-radius: 8px;
}

.thanks-service p {
    font-size: 16px;
    color: #2c3e50;
    margin: 0;
}

.thanks-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-primary {
    padding: 12px 30px;
    background-color: #e67e22;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

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

.btn-secondary {
    padding: 12px 30px;
    background-color: #95a5a6;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

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

.legal-content {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.legal-card {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

.legal-card h1 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.legal-card em {
    display: block;
    margin-bottom: 30px;
    color: #7f8c8d;
}

.legal-card h2 {
    font-size: 24px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-card h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #34495e;
}

.legal-card h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #34495e;
}

.legal-card p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #5a6c7d;
    line-height: 1.7;
}

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

.legal-card ul li {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 8px;
    line-height: 1.6;
}

.legal-card strong {
    color: #2c3e50;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 20px;
    }

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

    .hero-content p {
        font-size: 18px;
    }

    .solution-card-wrapper {
        flex-direction: column;
    }

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

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

    .about-card {
        flex-direction: column;
    }

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

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

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

    .thanks-actions {
        flex-direction: column;
    }

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