* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.ad-label {
    background-color: #34495e;
    color: #ecf0f1;
    text-align: center;
    padding: 8px 0;
    font-size: 13px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 39px;
    z-index: 999;
}

.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;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    transition: all 0.3s;
}

.hero-section {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 0 20px;
}

.hero-text h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 35px;
    font-weight: 300;
}

.cta-primary {
    display: inline-block;
    padding: 16px 42px;
    background-color: #3498db;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.cta-primary:hover {
    background-color: #2980b9;
}

.story-section {
    padding: 100px 20px;
    background-color: #ecf0f1;
}

.narrow-content {
    max-width: 720px;
    margin: 0 auto;
}

.narrow-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    line-height: 1.3;
    color: #2c3e50;
}

.narrow-content p {
    font-size: 19px;
    margin-bottom: 25px;
    color: #34495e;
}

.insight-card {
    margin: 50px 0;
    background-color: #fff;
    padding: 35px;
    border-left: 4px solid #3498db;
}

.insight-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-bottom: 20px;
}

.insight-text {
    font-size: 18px;
    font-style: italic;
    color: #555;
}

.problem-section {
    padding: 100px 20px;
    background-color: #fff;
}

.offset-layout {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.problem-text {
    flex: 1;
}

.problem-text h3 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.problem-list {
    list-style: none;
    padding-left: 0;
}

.problem-list li {
    padding: 15px 0;
    padding-left: 35px;
    position: relative;
    font-size: 18px;
    border-bottom: 1px solid #ecf0f1;
}

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

.problem-visual {
    flex: 1;
}

.problem-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
}

.insight-section {
    padding: 100px 20px;
    background-color: #2c3e50;
    color: #ecf0f1;
}

.insight-section .narrow-content h2 {
    color: #ecf0f1;
}

.insight-section .narrow-content p {
    color: #bdc3c7;
}

.reference-link {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.reference-link:hover {
    text-decoration: underline;
}

.testimonial {
    background-color: #34495e;
    padding: 35px;
    margin: 40px 0;
    border-left: 4px solid #3498db;
    font-size: 20px;
    font-style: italic;
}

.testimonial cite {
    display: block;
    margin-top: 20px;
    font-style: normal;
    font-size: 16px;
    color: #95a5a6;
}

.trust-section {
    padding: 100px 20px;
    background-color: #fff;
}

.three-col-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.trust-card {
    flex: 1;
    background-color: #ecf0f1;
    padding: 0;
    overflow: hidden;
}

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

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

.trust-card p {
    padding: 0 25px 25px;
    font-size: 16px;
    color: #555;
}

.benefits-section {
    padding: 100px 20px;
    background-color: #ecf0f1;
}

.benefits-layout {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.benefits-content {
    flex: 1.2;
}

.benefits-content h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.benefit-item {
    margin-bottom: 35px;
}

.benefit-item h5 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #3498db;
}

.benefit-item p {
    font-size: 17px;
    color: #555;
}

.benefits-image {
    flex: 1;
}

.benefits-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
}

.services-reveal-section {
    padding: 100px 20px;
    background-color: #fff;
}

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

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

.services-intro {
    text-align: center;
    font-size: 19px;
    margin-bottom: 60px;
    color: #555;
}

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

.service-card {
    flex: 0 0 calc(33.333% - 24px);
    background-color: #ecf0f1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

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

.service-card h3 {
    font-size: 22px;
    margin: 25px 25px 15px;
    color: #2c3e50;
}

.service-card p {
    padding: 0 25px;
    font-size: 15px;
    color: #555;
    flex-grow: 1;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #3498db;
    padding: 20px 25px 15px;
}

.select-service-btn {
    margin: 0 25px 25px;
    padding: 14px 0;
    background-color: #3498db;
    color: #fff;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 16px;
}

.select-service-btn:hover {
    background-color: #2980b9;
}

.form-section {
    padding: 100px 20px;
    background-color: #2c3e50;
}

.form-container {
    max-width: 650px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
    color: #ecf0f1;
}

.form-intro {
    text-align: center;
    font-size: 17px;
    margin-bottom: 50px;
    color: #bdc3c7;
}

.order-form {
    background-color: #34495e;
    padding: 40px;
    border-radius: 4px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #ecf0f1;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #7f8c8d;
    background-color: #2c3e50;
    color: #ecf0f1;
    font-size: 16px;
}

.form-group input:read-only {
    background-color: #1a252f;
    cursor: not-allowed;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background-color: #3498db;
    color: #fff;
    border: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.testimonials-section {
    padding: 100px 20px;
    background-color: #ecf0f1;
}

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

.testimonials-container h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.testimonial-grid {
    display: flex;
    gap: 35px;
}

.testimonial-card {
    flex: 1;
    background-color: #fff;
    padding: 35px;
    border-left: 4px solid #3498db;
}

.testimonial-card p {
    font-size: 17px;
    font-style: italic;
    margin-bottom: 20px;
    color: #555;
}

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

.final-cta-section {
    padding: 100px 20px;
    background-color: #3498db;
    text-align: center;
}

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.final-cta-content h2 {
    font-size: 40px;
    margin-bottom: 25px;
    color: #fff;
}

.final-cta-content p {
    font-size: 20px;
    margin-bottom: 35px;
    color: #ecf0f1;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 42px;
    background-color: #fff;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.cta-secondary:hover {
    background-color: #ecf0f1;
}

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

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

.footer-section {
    flex: 1;
}

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

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

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

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

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

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

.references-list {
    list-style: decimal;
    padding-left: 20px;
}

.references-list li {
    margin-bottom: 15px;
    font-size: 13px;
}

.references-list li a {
    color: #3498db;
    text-decoration: none;
}

.references-list li a:hover {
    text-decoration: underline;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 25px;
    background-color: #34495e;
    font-size: 13px;
    color: #95a5a6;
    line-height: 1.6;
}

.footer-disclaimer strong {
    color: #ecf0f1;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    font-size: 14px;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    padding: 25px 20px;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    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;
    color: #ecf0f1;
    font-size: 15px;
}

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

.cookie-btn {
    padding: 12px 28px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cookie-btn.accept {
    background-color: #3498db;
    color: #fff;
}

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

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

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

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

.page-hero-content h1 {
    font-size: 48px;
    color: #ecf0f1;
    margin-bottom: 15px;
}

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

.about-story-section {
    padding: 100px 20px;
    background-color: #fff;
}

.about-content-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-text-block {
    flex: 1;
}

.about-text-block h2 {
    font-size: 34px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.about-text-block p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.about-image-block {
    flex: 1;
}

.about-image-block img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
}

.philosophy-section {
    padding: 100px 20px;
    background-color: #ecf0f1;
}

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

.philosophy-container h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.philosophy-card {
    flex: 0 0 calc(50% - 15px);
    background-color: #fff;
    padding: 35px;
    border-left: 4px solid #3498db;
}

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

.philosophy-card p {
    font-size: 16px;
    color: #555;
}

.approach-section {
    padding: 100px 20px;
    background-color: #fff;
}

.approach-layout {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.approach-visual {
    flex: 1;
}

.approach-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
}

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 34px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.approach-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
}

.approach-list {
    list-style: none;
    margin-top: 30px;
}

.approach-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 16px;
    color: #555;
}

.approach-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.values-section {
    padding: 100px 20px;
    background-color: #ecf0f1;
}

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

.values-container h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.value-item {
    flex: 0 0 calc(50% - 18px);
    background-color: #fff;
    padding: 35px;
}

.value-item h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #3498db;
}

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

.team-section {
    padding: 100px 20px;
    background-color: #fff;
}

.team-container {
    max-width: 1100px;
    margin: 0 auto;
}

.team-container h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 20px;
    color: #2c3e50;
}

.team-intro {
    text-align: center;
    font-size: 17px;
    margin-bottom: 50px;
    color: #555;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.team-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
}

.cta-about-section {
    padding: 80px 20px;
    background-color: #3498db;
    text-align: center;
}

.cta-about-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #fff;
}

.cta-about-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #ecf0f1;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: #fff;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

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

.services-list-section {
    padding: 80px 20px;
    background-color: #fff;
}

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

.service-detail-card {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

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

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

.service-detail-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
}

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

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

.service-price-large {
    font-size: 32px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
}

.service-detail-content h4 {
    font-size: 20px;
    margin: 25px 0 15px;
    color: #2c3e50;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 25px;
}

.service-detail-content ul li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 16px;
    color: #555;
}

.service-detail-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.service-duration {
    font-size: 15px;
    color: #7f8c8d;
    margin-bottom: 25px;
    font-style: italic;
}

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

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.contact-item {
    margin-bottom: 35px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #3498db;
}

.contact-item p {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
}

.contact-note {
    background-color: #ecf0f1;
    padding: 25px;
    margin-top: 40px;
    border-left: 4px solid #3498db;
}

.contact-note p {
    font-size: 15px;
    color: #555;
}

.contact-visual-block {
    flex: 1;
}

.contact-visual-block img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 30px;
}

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

.location-details p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #555;
}

.location-details ul {
    list-style: none;
}

.location-details ul li {
    padding: 8px 0 8px 25px;
    position: relative;
    font-size: 15px;
    color: #555;
}

.location-details ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

.faq-section {
    padding: 80px 20px;
    background-color: #ecf0f1;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

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

.faq-item {
    background-color: #fff;
    padding: 30px;
    margin-bottom: 20px;
    border-left: 4px solid #3498db;
}

.faq-item h4 {
    font-size: 19px;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

.cta-contact-section {
    padding: 80px 20px;
    background-color: #3498db;
    text-align: center;
}

.cta-contact-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #fff;
}

.cta-contact-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #ecf0f1;
}

.thanks-section {
    padding: 100px 20px;
    background-color: #fff;
    min-height: 60vh;
}

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

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

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

.thanks-message {
    font-size: 19px;
    margin-bottom: 40px;
    color: #555;
}

.order-summary {
    background-color: #ecf0f1;
    padding: 30px;
    margin-bottom: 40px;
    border-radius: 4px;
}

.order-summary h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.selected-service-display {
    font-size: 22px;
    font-weight: 700;
    color: #3498db;
}

.thanks-next-steps {
    text-align: left;
    max-width: 500px;
    margin: 0 auto 40px;
}

.thanks-next-steps h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #2c3e50;
    text-align: center;
}

.thanks-next-steps ul {
    list-style: none;
}

.thanks-next-steps ul li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 16px;
    color: #555;
}

.thanks-next-steps ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

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

.btn-primary {
    padding: 14px 35px;
    background-color: #3498db;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

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

.btn-secondary {
    padding: 14px 35px;
    background-color: #7f8c8d;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

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

.legal-page-section {
    padding: 80px 20px;
    background-color: #fff;
}

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

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

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

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
}

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

.legal-content ul,
.legal-content ol {
    margin-bottom: 20px;
    padding-left: 40px;
}

.legal-content ul li,
.legal-content ol li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #555;
    line-height: 1.8;
}

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

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

.gdpr-table,
.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.gdpr-table thead,
.cookies-table thead {
    background-color: #34495e;
    color: #ecf0f1;
}

.gdpr-table th,
.cookies-table th {
    padding: 15px;
    text-align: left;
    font-size: 16px;
}

.gdpr-table td,
.cookies-table td {
    padding: 15px;
    border-bottom: 1px solid #ecf0f1;
    font-size: 15px;
    color: #555;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: #fff;
        flex-direction: column;
        gap: 0;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        padding: 10px 0;
    }

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

    .hero-subtitle {
        font-size: 18px;
    }

    .offset-layout,
    .benefits-layout,
    .about-content-wrapper,
    .approach-layout,
    .contact-container {
        flex-direction: column;
    }

    .three-col-grid,
    .testimonial-grid {
        flex-direction: column;
    }

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

    .philosophy-cards,
    .values-grid {
        flex-direction: column;
    }

    .philosophy-card,
    .value-item {
        flex: 0 0 100%;
    }

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

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

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }

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

    .gdpr-table,
    .cookies-table {
        font-size: 14px;
    }
}
