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

html {
    scroll-behavior: smooth;
}

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

a {
    color: #2980b9;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1a5276;
}

ul {
    list-style: none;
}

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

.site-header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.main-nav .nav-list {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    color: #555;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #2980b9;
    transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.main-nav a.active {
    color: #2980b9;
}

.ad-disclosure {
    background-color: #ecf0f1;
    color: #7f8c8d;
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 3px;
}

.hero-split {
    display: flex;
    min-height: 70vh;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
    min-width: 300px;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

.hero-content h1 {
    font-size: 2.75rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.hero-intro {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.cta-button {
    display: inline-block;
    background-color: #2980b9;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-align: center;
}

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

.cta-button-secondary {
    display: inline-block;
    background-color: #ffffff;
    color: #2980b9;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    border: 2px solid #2980b9;
    transition: all 0.3s ease;
    text-align: center;
}

.cta-button-secondary:hover {
    background-color: #2980b9;
    color: #ffffff;
}

.cta-link {
    display: inline-block;
    color: #2980b9;
    font-weight: 600;
    padding: 0.5rem 0;
    position: relative;
}

.cta-link::after {
    content: ' →';
}

.intro-section {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

.intro-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.intro-wrapper p {
    color: #555;
    margin-bottom: 1rem;
}

.services-preview {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.services-preview-header {
    text-align: center;
    margin-bottom: 3rem;
}

.services-preview-header h2 {
    font-size: 2rem;
    color: #1a252f;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card .service-image {
    height: 180px;
    overflow: hidden;
}

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

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.25rem;
    color: #1a252f;
}

.service-card p {
    padding: 0 1.5rem 1rem;
    color: #666;
    font-size: 0.95rem;
}

.service-card .price {
    display: block;
    padding: 1rem 1.5rem 1.5rem;
    font-size: 1.35rem;
    font-weight: 700;
    color: #2980b9;
}

.services-cta {
    text-align: center;
    margin-top: 3rem;
}

.testimonial-section {
    background-color: #f0f4f8;
    padding: 4rem 2rem;
}

.testimonial-split {
    display: flex;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
    gap: 3rem;
}

.testimonial-content {
    flex: 1;
    min-width: 300px;
}

.testimonial-content blockquote {
    font-size: 1.25rem;
    font-style: italic;
    color: #444;
    border-left: 4px solid #2980b9;
    padding-left: 2rem;
}

.testimonial-content cite {
    display: block;
    margin-top: 1.5rem;
    font-style: normal;
    font-weight: 600;
    color: #666;
}

.testimonial-image {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    border-radius: 8px;
    overflow: hidden;
}

.testimonial-image img {
    width: 100%;
    height: auto;
}

.approach-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.approach-wrapper {
    display: flex;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
    gap: 3rem;
    align-items: center;
}

.approach-image {
    flex: 1;
    min-width: 280px;
    max-width: 450px;
    border-radius: 8px;
    overflow: hidden;
}

.approach-image img {
    width: 100%;
    height: auto;
}

.approach-content {
    flex: 1;
    min-width: 300px;
}

.approach-content h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.approach-content p {
    color: #555;
    margin-bottom: 1.5rem;
}

.approach-list {
    padding-left: 1.25rem;
}

.approach-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: #555;
}

.approach-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2980b9;
    font-weight: bold;
}

.cta-section {
    background: linear-gradient(135deg, #2980b9 0%, #1a5276 100%);
    padding: 5rem 2rem;
    text-align: center;
}

.cta-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.cta-wrapper h2 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-wrapper p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.site-footer {
    background-color: #1a252f;
    color: #aab;
    padding: 4rem 2rem 0;
}

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

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

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.footer-brand p {
    margin-top: 0.75rem;
    color: #889;
}

.footer-links {
    flex: 1;
    min-width: 180px;
}

.footer-links h4,
.footer-contact h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #889;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

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

.footer-contact p {
    color: #889;
    margin-bottom: 0.5rem;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
    border-top: 1px solid #2c3e50;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    color: #778;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid #2c3e50;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #667;
}

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

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    font-size: 0.95rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-accept {
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-accept:hover {
    background-color: #219a52;
}

.cookie-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.cookie-link {
    color: #3498db;
    font-size: 0.9rem;
}

.page-hero {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    padding: 5rem 2rem;
    text-align: center;
}

.page-hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.page-hero-content h1 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-hero-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
}

.about-story {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.story-split {
    display: flex;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
    gap: 3rem;
    align-items: center;
}

.story-content {
    flex: 1;
    min-width: 300px;
}

.story-content h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.story-content p {
    color: #555;
    margin-bottom: 1rem;
}

.story-image {
    flex: 1;
    min-width: 280px;
    max-width: 450px;
    border-radius: 8px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: auto;
}

.values-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.values-header {
    text-align: center;
    margin-bottom: 3rem;
}

.values-header h2 {
    font-size: 2rem;
    color: #1a252f;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.value-item {
    flex: 1;
    min-width: 220px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.value-item h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    color: #2980b9;
}

.value-item p {
    color: #666;
    font-size: 0.95rem;
}

.team-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.team-split {
    display: flex;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
    gap: 3rem;
    align-items: center;
}

.team-image {
    flex: 1;
    min-width: 280px;
    max-width: 450px;
    border-radius: 8px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: auto;
}

.team-content {
    flex: 1;
    min-width: 300px;
}

.team-content h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.team-content p {
    color: #555;
    margin-bottom: 1rem;
}

.approach-detailed {
    padding: 5rem 2rem;
    background-color: #f0f4f8;
}

.approach-header {
    text-align: center;
    margin-bottom: 3rem;
}

.approach-header h2 {
    font-size: 2rem;
    color: #1a252f;
}

.approach-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.approach-column {
    flex: 1;
    min-width: 280px;
}

.approach-column h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #2980b9;
}

.approach-column p {
    color: #555;
}

.services-full {
    padding: 3rem 2rem 5rem;
    background-color: #ffffff;
}

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

.services-intro p {
    color: #555;
    font-size: 1.05rem;
}

.service-detailed {
    max-width: 1100px;
    margin: 0 auto 4rem;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 12px;
}

.service-detailed .service-split {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    align-items: center;
}

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

.service-detailed .service-info h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.service-detailed .service-info p {
    color: #555;
    margin-bottom: 1.5rem;
}

.service-includes {
    padding-left: 1.25rem;
    margin-bottom: 1.5rem;
}

.service-includes li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: #555;
}

.service-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.service-price-block {
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

.price-label {
    font-size: 0.9rem;
    color: #777;
}

.price-amount {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2980b9;
}

.service-detailed .service-image {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    border-radius: 8px;
    overflow: hidden;
}

.service-detailed .service-image img {
    width: 100%;
    height: auto;
}

.service-detailed.alternate .service-split {
    flex-direction: row-reverse;
}

.booking-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #2980b9 0%, #1a5276 100%);
}

.booking-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.booking-wrapper h2 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: #1a252f;
    text-align: center;
}

.booking-wrapper > p {
    color: #666;
    text-align: center;
    margin-bottom: 2rem;
}

.booking-form .form-group {
    margin-bottom: 1.5rem;
}

.booking-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: #2980b9;
    box-shadow: 0 0 0 3px rgba(41, 128, 185, 0.15);
}

.submit-button {
    width: 100%;
    padding: 1rem;
    background-color: #2980b9;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #1a5276;
}

.contact-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.contact-split {
    display: flex;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
    gap: 3rem;
}

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

.contact-info h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: #1a252f;
}

.contact-block {
    margin-bottom: 2rem;
}

.contact-block h3 {
    font-size: 1rem;
    color: #2980b9;
    margin-bottom: 0.5rem;
}

.contact-block p {
    color: #555;
}

.contact-map {
    flex: 1;
    min-width: 280px;
    max-width: 500px;
    border-radius: 8px;
    overflow: hidden;
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 350px;
}

.faq-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.faq-wrapper h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: #1a252f;
    text-align: center;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background-color: #ffffff;
    padding: 1.5rem 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: #1a252f;
}

.faq-item p {
    color: #555;
}

.response-info {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

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

.response-wrapper h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.response-wrapper p {
    color: #555;
}

.thanks-section {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
    min-height: 60vh;
}

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

.thanks-icon {
    color: #27ae60;
    margin-bottom: 2rem;
}

.thanks-wrapper h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.thanks-message {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 2rem;
}

.selected-service {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.selected-service p {
    color: #666;
    margin-bottom: 0.5rem;
}

.selected-service strong {
    color: #2980b9;
    font-size: 1.15rem;
}

.thanks-next {
    text-align: left;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.thanks-next h2 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.next-steps {
    padding-left: 1.25rem;
}

.next-steps li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    color: #555;
}

.next-steps li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 10px;
    height: 10px;
    background-color: #2980b9;
    border-radius: 50%;
}

.thanks-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.legal-page {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.legal-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.legal-wrapper h1 {
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
    color: #1a252f;
}

.legal-updated {
    color: #888;
    margin-bottom: 3rem;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.legal-section h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.legal-section p {
    color: #555;
    margin-bottom: 0.75rem;
}

.legal-section ul {
    padding-left: 1.25rem;
    margin-bottom: 1rem;
}

.legal-section li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.5rem;
    color: #555;
}

.legal-section li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2980b9;
}

.rights-item {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.rights-item h3 {
    margin-bottom: 0.5rem;
}

.rights-item p {
    margin-bottom: 0;
}

.cookie-type {
    margin-bottom: 2rem;
}

.cookie-type h3 {
    margin-bottom: 0.75rem;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.cookie-table th,
.cookie-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.cookie-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #333;
}

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

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }

    .main-nav .nav-list {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content {
        padding: 3rem 1.5rem;
    }

    .services-grid {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        max-width: 100%;
    }

    .testimonial-split,
    .approach-wrapper,
    .story-split,
    .team-split,
    .contact-split {
        flex-direction: column;
    }

    .testimonial-image,
    .approach-image,
    .story-image,
    .team-image,
    .contact-map {
        max-width: 100%;
    }

    .service-detailed .service-split,
    .service-detailed.alternate .service-split {
        flex-direction: column;
    }

    .service-detailed .service-image {
        max-width: 100%;
    }

    .booking-wrapper {
        padding: 2rem 1.5rem;
    }

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

    .footer-container {
        flex-direction: column;
        gap: 2rem;
    }

    .page-hero-content h1 {
        font-size: 1.75rem;
    }

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

    .approach-columns {
        flex-direction: column;
    }
}
