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

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

.cookie-banner.show {
    display: flex;
}

.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;
    margin: 0;
    font-size: 15px;
}

.cookie-actions {
    display: flex;
    gap: 12px;
}

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

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

.btn-accept:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.header-main {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

.nav-primary {
    display: flex;
    gap: 32px;
    align-items: center;
}

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

.nav-primary a:hover {
    color: #3498db;
}

.ad-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    padding: 6px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background-color: #f8f9fa;
}

.hero-section {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 30px;
    text-align: center;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 28px;
    color: #1a1a1a;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 21px;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-image-wrapper {
    margin-top: 50px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    background-color: #f5f5f5;
}

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

.story-intro {
    background-color: #fafbfc;
    padding: 80px 30px;
    margin: 60px 0;
}

.story-container {
    max-width: 800px;
    margin: 0 auto;
}

.story-container h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 32px;
    color: #1a1a1a;
    line-height: 1.3;
}

.story-container p {
    font-size: 19px;
    line-height: 1.8;
    color: #444444;
    margin-bottom: 24px;
}

.problem-section {
    padding: 80px 30px;
    max-width: 1300px;
    margin: 0 auto;
}

.problem-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.problem-text {
    flex: 1;
    min-width: 400px;
}

.problem-text h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 28px;
    color: #1a1a1a;
    line-height: 1.2;
}

.problem-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #444444;
    margin-bottom: 20px;
}

.problem-list {
    list-style: none;
    margin: 30px 0;
}

.problem-list li {
    font-size: 18px;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 14px;
    padding-left: 30px;
    position: relative;
}

.problem-list li:before {
    content: "×";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-size: 24px;
    font-weight: 700;
}

.problem-image {
    flex: 1;
    min-width: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    background-color: #f0f0f0;
}

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

.insight-section {
    background-color: #f9fafb;
    padding: 90px 30px;
}

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

.insight-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
    color: #1a1a1a;
}

.insight-content > p {
    font-size: 19px;
    line-height: 1.7;
    text-align: center;
    color: #555555;
    max-width: 850px;
    margin: 0 auto 60px;
}

.insight-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.insight-card {
    flex: 1;
    min-width: 320px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.insight-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #2c3e50;
}

.insight-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #555555;
}

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

.trust-container h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
    color: #1a1a1a;
}

.trust-container > p {
    font-size: 19px;
    line-height: 1.7;
    text-align: center;
    color: #555555;
    margin-bottom: 50px;
}

.trust-features {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.feature-item {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.feature-item h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #2c3e50;
}

.feature-item p {
    font-size: 17px;
    line-height: 1.6;
    color: #666666;
}

.testimonials-section {
    background-color: #f7f9fa;
    padding: 80px 30px;
}

.testimonials-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.testimonials-wrapper h2 {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.testimonial-flow {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.testimonial {
    background-color: #ffffff;
    padding: 35px;
    border-radius: 10px;
    border-left: 4px solid #3498db;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
}

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

.testimonial cite {
    font-size: 15px;
    color: #7f8c8d;
    font-style: normal;
    font-weight: 600;
}

.benefits-reveal {
    padding: 90px 30px;
}

.benefits-content {
    max-width: 1300px;
    margin: 0 auto;
}

.benefits-content h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.benefits-layout {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.benefit-block {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.benefit-block img {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 10px;
    margin: 0 auto;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    background-color: #efefef;
    object-fit: cover;
}

.benefit-block h3 {
    font-size: 30px;
    font-weight: 700;
    color: #2c3e50;
}

.benefit-block p {
    font-size: 18px;
    line-height: 1.7;
    color: #555555;
}

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

.services-intro {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.services-intro h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.services-intro p {
    font-size: 19px;
    line-height: 1.7;
    color: #555555;
}

.services-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1;
    min-width: 320px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.service-card h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #2c3e50;
}

.service-card p {
    font-size: 17px;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-price {
    font-size: 32px;
    font-weight: 800;
    color: #27ae60;
    margin-bottom: 20px;
}

.btn-select-service {
    padding: 14px 28px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.order-section {
    padding: 80px 30px;
    background-color: #ffffff;
}

.order-container {
    max-width: 700px;
    margin: 0 auto;
}

.order-container h2 {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.order-subtitle {
    font-size: 18px;
    text-align: center;
    color: #666666;
    margin-bottom: 50px;
}

.order-form {
    background-color: #f9fafb;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

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

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

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

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

.form-group input[readonly] {
    background-color: #f0f0f0;
    color: #777777;
    cursor: not-allowed;
}

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

.btn-submit:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

.final-cta {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 80px 30px;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
}

.final-cta-content p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta-large {
    display: inline-block;
    padding: 18px 50px;
    background-color: #27ae60;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-cta-large:hover {
    background-color: #229954;
    transform: translateY(-3px);
}

.disclaimer-section {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 40px 30px;
    margin: 60px 0;
}

.disclaimer-content {
    max-width: 1100px;
    margin: 0 auto;
}

.disclaimer-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #856404;
}

.footer-main {
    background-color: #34495e;
    color: #ecf0f1;
    padding: 60px 30px 30px;
}

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

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

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

.footer-column p {
    font-size: 15px;
    line-height: 1.7;
    color: #bdc3c7;
    margin-bottom: 12px;
}

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

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

.footer-column ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #3498db;
}

.footer-bottom {
    max-width: 1300px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #4a5f7f;
    text-align: center;
    color: #95a5a6;
    font-size: 14px;
}

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

.page-hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.page-hero-content p {
    font-size: 20px;
    color: #666666;
    max-width: 800px;
    margin: 0 auto;
}

.about-content,
.contact-content,
.legal-content {
    padding: 60px 30px;
}

.about-container,
.contact-container,
.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.about-intro,
.about-values,
.about-process,
.about-team,
.about-commitment {
    margin-bottom: 60px;
}

.about-intro h2,
.about-values h2,
.about-process h2,
.about-team h2,
.about-commitment h2,
.contact-info-block h2,
.contact-faq h2,
.contact-additional h2,
.legal-container h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #2c3e50;
}

.about-intro p,
.about-process p,
.about-team p,
.about-commitment p,
.contact-info-block p,
.contact-additional p,
.legal-container p {
    font-size: 17px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 18px;
}

.about-image-section {
    margin: 50px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    background-color: #f0f0f0;
}

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

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

.value-item {
    flex: 1;
    min-width: 280px;
}

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

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #666666;
}

.process-list,
.commitment-list {
    margin: 24px 0 24px 30px;
}

.process-list li,
.commitment-list li {
    font-size: 17px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 16px;
}

.services-detailed {
    padding: 60px 30px;
}

.services-container {
    max-width: 1300px;
    margin: 0 auto;
}

.service-detailed {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.service-image {
    flex: 1;
    min-width: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    background-color: #f0f0f0;
}

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

.service-info {
    flex: 1;
    min-width: 400px;
}

.service-info h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-description {
    font-size: 18px;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 24px;
}

.service-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 28px;
    margin-bottom: 16px;
    color: #34495e;
}

.service-features {
    list-style: none;
    margin: 20px 0;
}

.service-features li {
    font-size: 16px;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-size: 20px;
    font-weight: 700;
}

.service-price-display {
    font-size: 36px;
    font-weight: 800;
    color: #27ae60;
    margin: 28px 0 20px;
}

.service-saving {
    font-size: 16px;
    color: #e67e22;
    font-weight: 600;
    margin-bottom: 20px;
}

.btn-service {
    display: inline-block;
    padding: 14px 32px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.services-guarantee {
    background-color: #f9fafb;
    padding: 60px 30px;
    text-align: center;
}

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

.guarantee-content h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #2c3e50;
}

.guarantee-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 16px;
}

.contact-info-block {
    margin-bottom: 50px;
}

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

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

.contact-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2c3e50;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555555;
}

.contact-note {
    font-size: 14px;
    color: #7f8c8d;
    font-style: italic;
    margin-top: 10px;
}

.contact-map-placeholder {
    background-color: #f8f9fa;
    padding: 50px;
    border-radius: 10px;
    margin: 50px 0;
    text-align: center;
}

.map-info h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #2c3e50;
}

.map-info p {
    font-size: 17px;
    line-height: 1.7;
    color: #666666;
}

.contact-faq {
    margin: 60px 0;
}

.faq-list {
    margin-top: 30px;
}

.faq-item {
    margin-bottom: 30px;
}

.faq-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2c3e50;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #666666;
}

.thanks-section {
    padding: 80px 30px;
}

.thanks-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-container h1 {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #27ae60;
}

.thanks-message {
    font-size: 20px;
    color: #555555;
    margin-bottom: 50px;
}

.thanks-details {
    background-color: #f9fafb;
    padding: 50px;
    border-radius: 10px;
    margin-bottom: 50px;
    text-align: left;
}

.thanks-details h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    color: #2c3e50;
}

.thanks-steps {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.thanks-step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #3498db;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2c3e50;
}

.step-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #666666;
}

.thanks-info {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 30px;
    border-radius: 6px;
    margin-bottom: 50px;
    text-align: left;
}

.thanks-info h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #856404;
}

.thanks-info ul {
    list-style: none;
    margin: 0;
}

.thanks-info ul li {
    font-size: 16px;
    line-height: 1.7;
    color: #856404;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

.thanks-info ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #ffc107;
    font-size: 18px;
    font-weight: 700;
}

.thanks-service-reminder {
    background-color: #e8f4f8;
    border-left: 4px solid #3498db;
    padding: 30px;
    border-radius: 6px;
    margin-bottom: 50px;
    text-align: left;
}

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

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: #3498db;
    border: 2px solid #3498db;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #3498db;
    color: #ffffff;
    transform: translateY(-2px);
}

.legal-date {
    font-size: 14px;
    color: #7f8c8d;
    font-style: italic;
    margin-bottom: 30px;
}

.legal-container h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #2c3e50;
}

.legal-container h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 28px;
    margin-bottom: 16px;
    color: #34495e;
}

.legal-container ul,
.legal-container ol {
    margin: 20px 0 20px 30px;
}

.legal-container ul li,
.legal-container ol li {
    font-size: 17px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 12px;
}

.legal-container a {
    color: #3498db;
    text-decoration: none;
}

.legal-container a:hover {
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.cookie-table thead {
    background-color: #f8f9fa;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #ddd;
    font-size: 15px;
}

.cookie-table th {
    font-weight: 700;
    color: #2c3e50;
}

.cookie-table td {
    color: #555555;
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-primary {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

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

    .problem-wrapper,
    .service-detailed {
        flex-direction: column;
    }

    .problem-text,
    .problem-image,
    .service-image,
    .service-info {
        min-width: 100%;
    }

    .insight-grid,
    .trust-features,
    .services-grid {
        flex-direction: column;
    }

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

    .order-form {
        padding: 30px;
    }
}