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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
}

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

.navigation {
    background-color: #ffffff;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

.nav-links a {
    color: #6c757d;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.editorial-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 30px;
}

.article-header {
    margin-bottom: 50px;
    text-align: center;
}

.article-header h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.article-intro {
    font-size: 20px;
    color: #6c757d;
    font-weight: 400;
}

.article-image {
    margin: 50px 0;
    background-color: #f8f9fa;
}

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

.article-section {
    margin: 50px 0;
}

.article-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    font-weight: 700;
    color: #1a1a1a;
}

.article-section h3 {
    font-size: 24px;
    margin-bottom: 15px;
    margin-top: 30px;
    font-weight: 600;
    color: #2c3e50;
}

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

.article-section a {
    color: #3498db;
    text-decoration: none;
}

.article-section a:hover {
    text-decoration: underline;
}

.insight-block {
    background-color: #f8f9fa;
    padding: 40px;
    margin: 60px -40px;
    border-left: 4px solid #3498db;
}

.inline-image-text {
    margin: 40px 0;
}

.inline-image-text img {
    width: 100%;
    margin-bottom: 25px;
    background-color: #f8f9fa;
    object-fit: cover;
}

.method-card {
    margin: 35px 0;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

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

.method-card p {
    margin: 0;
}

.article-image-inline {
    margin: 50px 0;
    background-color: #f8f9fa;
}

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

.cta-inline {
    margin: 60px 0;
    padding: 50px 40px;
    background-color: #2c3e50;
    color: #ffffff;
    text-align: center;
}

.cta-inline h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #ffffff;
}

.cta-inline p {
    font-size: 17px;
    margin-bottom: 30px;
    color: #ecf0f1;
}

.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: background-color 0.3s ease;
}

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

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

.insight-list li {
    padding-left: 30px;
    margin-bottom: 15px;
    position: relative;
    font-size: 17px;
}

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

.testimonial-block {
    margin: 60px 0;
    padding: 40px;
    background-color: #ecf0f1;
    border-left: 4px solid #95a5a6;
}

.testimonial-block blockquote {
    font-size: 19px;
    font-style: italic;
    line-height: 1.7;
}

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

.services-preview {
    margin: 70px 0;
}

.services-preview h2 {
    font-size: 32px;
    margin-bottom: 20px;
    text-align: center;
}

.services-preview > p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
    color: #6c757d;
}

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

.service-card {
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #f8f9fa;
}

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

.service-card p {
    margin: 0 25px 15px;
    font-size: 16px;
    color: #6c757d;
}

.service-card .price {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin: 20px 25px 15px;
}

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

.btn-secondary:hover {
    background-color: #3498db;
    color: #ffffff;
}

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

.references-section {
    margin: 50px 0;
    padding: 30px;
    background-color: #f8f9fa;
}

.references-section h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

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

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

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

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

.final-cta {
    margin: 70px 0;
    text-align: center;
}

.final-cta h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #6c757d;
}

.btn-primary-large {
    display: inline-block;
    padding: 16px 40px;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-primary-large:hover {
    background-color: #1a252f;
}

.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 50px 30px 30px;
    margin-top: 80px;
}

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

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

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

.footer-column p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.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: #ffffff;
}

.email-text {
    color: #bdc3c7;
    font-size: 15px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    text-align: center;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 25px 30px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    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;
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

.cookie-content a {
    color: #3498db;
}

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

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

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

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

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

.btn-reject:hover {
    background-color: #ffffff;
    color: #2c3e50;
}

.page-header {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 30px 40px;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.page-header p {
    font-size: 19px;
    color: #6c757d;
}

.services-detailed {
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px;
}

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

.service-detail:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image-wrapper {
    flex: 1;
    background-color: #f8f9fa;
}

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

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

.service-info p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #6c757d;
}

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

.service-features li {
    padding-left: 25px;
    margin-bottom: 12px;
    position: relative;
    font-size: 16px;
    color: #6c757d;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

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

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

.booking-section {
    max-width: 700px;
    margin: 80px auto;
    padding: 50px 40px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

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

.selected-service-display {
    text-align: center;
    font-size: 17px;
    margin-bottom: 35px;
    color: #6c757d;
}

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

.service-form {
    margin-top: 30px;
}

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 14px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.about-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 30px;
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.about-intro {
    font-size: 20px;
    color: #6c757d;
}

.about-story {
    margin: 60px 0;
}

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

.story-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #6c757d;
}

.story-image {
    margin: 40px 0;
    background-color: #f8f9fa;
}

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

.philosophy-section {
    margin: 70px 0;
}

.philosophy-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
    color: #2c3e50;
}

.philosophy-points {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.philosophy-item {
    padding: 30px;
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
}

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

.philosophy-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #6c757d;
    margin: 0;
}

.approach-section {
    margin: 70px 0;
}

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

.approach-section > p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
    color: #6c757d;
}

.approach-image {
    margin: 40px 0;
    background-color: #f8f9fa;
}

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

.approach-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.approach-block {
    padding: 30px;
    background-color: #f8f9fa;
}

.approach-block h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.approach-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #6c757d;
    margin: 0;
}

.values-section {
    margin: 70px 0;
}

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

.value-card {
    margin-bottom: 30px;
    padding: 30px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
}

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

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #6c757d;
    margin: 0;
}

.team-section {
    margin: 70px 0;
}

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

.team-section p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #6c757d;
}

.expertise-list {
    list-style: none;
    margin: 25px 0;
}

.expertise-list li {
    padding-left: 30px;
    margin-bottom: 15px;
    position: relative;
    font-size: 17px;
    color: #6c757d;
}

.expertise-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3498db;
    font-size: 24px;
    line-height: 1;
}

.impact-section {
    margin: 70px 0;
    padding: 50px 40px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

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

.impact-section > p {
    text-align: center;
    font-size: 17px;
    margin-bottom: 50px;
    color: #6c757d;
}

.impact-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 10px;
}

.stat-description {
    font-size: 16px;
    color: #6c757d;
    max-width: 200px;
}

.cta-about {
    margin: 70px 0;
    text-align: center;
}

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

.cta-about p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #6c757d;
}

.cta-about a {
    margin: 0 10px;
}

.contact-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.contact-header p {
    font-size: 19px;
    color: #6c757d;
}

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

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

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

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

.contact-detail p {
    font-size: 17px;
    line-height: 1.7;
    color: #6c757d;
}

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

.contact-note p {
    margin: 0;
    font-size: 16px;
    color: #6c757d;
}

.location-section {
    margin: 70px 0;
}

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

.location-section p {
    font-size: 17px;
    margin-bottom: 35px;
    color: #6c757d;
}

.directions-info {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.direction-item {
    flex: 1;
    min-width: 250px;
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.direction-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.direction-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #6c757d;
    margin: 0;
}

.visit-info {
    margin: 70px 0;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

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

.visit-info p {
    font-size: 17px;
    line-height: 1.8;
    color: #6c757d;
    margin: 0;
}

.thanks-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 30px;
}

.thanks-content {
    text-align: center;
}

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

.thanks-icon svg {
    display: inline-block;
}

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

.thanks-message {
    margin: 40px 0;
}

.thanks-message p {
    font-size: 18px;
    line-height: 1.7;
    color: #6c757d;
    margin-bottom: 15px;
}

.thanks-message #serviceConfirmation {
    font-weight: 600;
    color: #3498db;
}

.thanks-info {
    margin: 60px 0;
}

.thanks-info h2 {
    font-size: 28px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
    text-align: left;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

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

.step-item p {
    flex: 1;
    font-size: 17px;
    line-height: 1.7;
    color: #6c757d;
    margin: 0;
    padding-top: 8px;
}

.thanks-additional {
    margin: 60px 0;
}

.thanks-additional p {
    font-size: 17px;
    margin-bottom: 25px;
    color: #6c757d;
}

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

.thanks-contact {
    margin-top: 60px;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.thanks-contact p {
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 10px;
}

.thanks-contact .email-text {
    font-size: 17px;
    font-weight: 600;
    color: #2c3e50;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 30px;
}

.legal-page h1 {
    font-size: 38px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.subtitle {
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 50px;
}

.last-updated {
    font-size: 15px;
    color: #6c757d;
    margin-bottom: 50px;
}

.legal-section {
    margin-bottom: 50px;
}

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

.legal-section h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-section p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #6c757d;
}

.legal-section ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-section ul li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #6c757d;
}

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

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

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

    .article-header h1 {
        font-size: 32px;
    }

    .article-intro {
        font-size: 18px;
    }

    .article-section h2 {
        font-size: 26px;
    }

    .insight-block {
        margin-left: 0;
        margin-right: 0;
        padding: 25px;
    }

    .service-detail {
        flex-direction: column;
        gap: 30px;
    }

    .service-detail:nth-child(even) {
        flex-direction: column;
    }

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

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

    .btn-accept,
    .btn-reject {
        width: 100%;
    }

    .directions-info {
        flex-direction: column;
    }

    .impact-stats {
        flex-direction: column;
        gap: 30px;
    }

    .stat-item {
        margin: 0 auto;
    }
}