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

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

.floating-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

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

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

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

.hero-offset {
    display: flex;
    align-items: center;
    padding: 80px 5% 80px 8%;
    gap: 60px;
    background-color: #f8f9fa;
}

.hero-content-left {
    flex: 1;
    max-width: 550px;
}

.hero-content-left h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a252f;
}

.hero-content-left p {
    font-size: 1.15rem;
    margin-bottom: 30px;
    color: #5a6c7d;
}

.hero-image-right {
    flex: 1;
    transform: translateY(-30px);
}

.hero-image-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    background-color: #e9ecef;
}

.cta-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

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

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

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

.intro-asymmetric {
    display: flex;
    padding: 100px 5% 100px 15%;
    gap: 80px;
    align-items: center;
}

.intro-block-narrow {
    flex: 1;
    max-width: 480px;
}

.intro-block-narrow h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #1a252f;
}

.intro-block-narrow p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.intro-image-overlap {
    flex: 1;
    transform: translateX(40px) translateY(30px);
}

.intro-image-overlap img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    object-fit: cover;
    background-color: #e9ecef;
}

.services-preview-offset {
    padding: 120px 5% 100px 5%;
    background-color: #ffffff;
}

.services-intro-left {
    max-width: 600px;
    margin-bottom: 60px;
    margin-left: 8%;
}

.services-intro-left h2 {
    font-size: 2.4rem;
    margin-bottom: 18px;
    color: #1a252f;
}

.services-intro-left p {
    font-size: 1.1rem;
    color: #5a6c7d;
}

.services-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    width: calc(50% - 20px);
    max-width: 480px;
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card.offset-top {
    transform: translateY(-20px);
}

.service-card.offset-bottom {
    transform: translateY(20px);
}

.service-card.offset-mid {
    transform: translateY(10px);
}

.service-card.offset-top-small {
    transform: translateY(-10px);
}

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

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

.service-card h3 {
    padding: 20px 25px 10px 25px;
    font-size: 1.5rem;
    color: #1a252f;
}

.service-card p {
    padding: 0 25px 15px 25px;
    color: #5a6c7d;
    font-size: 0.98rem;
}

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

.select-service-btn {
    margin: 0 25px 25px 25px;
    padding: 12px 24px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    width: calc(100% - 50px);
}

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

.approach-split {
    display: flex;
    padding: 100px 5%;
    gap: 60px;
    align-items: center;
    background-color: #f8f9fa;
}

.approach-image-left {
    flex: 1;
}

.approach-image-left img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    background-color: #e9ecef;
}

.approach-content-right {
    flex: 1;
    padding-left: 40px;
}

.approach-content-right h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #1a252f;
}

.approach-content-right p {
    margin-bottom: 18px;
    color: #5a6c7d;
    font-size: 1.05rem;
}

.approach-content-right .cta-secondary {
    margin-top: 15px;
}

.form-section-irregular {
    padding: 100px 5% 100px 12%;
    background-color: #ffffff;
}

.form-container-offset {
    max-width: 600px;
    transform: translateX(60px);
}

.form-container-offset h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #1a252f;
}

.form-container-offset p {
    margin-bottom: 30px;
    color: #5a6c7d;
}

.enquiry-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.submit-btn {
    padding: 14px 32px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.footer-asymmetric {
    background-color: #1a252f;
    color: #ffffff;
    padding: 60px 5% 30px 5%;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

.footer-block h4 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.footer-block p {
    color: #adb5bd;
    margin-bottom: 8px;
}

.footer-block a {
    display: block;
    color: #adb5bd;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.footer-block a:hover {
    color: #3498db;
}

.footer-disclaimer {
    padding: 25px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    margin-bottom: 30px;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #adb5bd;
}

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

.cookie-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

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

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

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

.cookie-btn.reject {
    background-color: #6c757d;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background-color: #5a6268;
}

.cookie-actions a {
    color: #3498db;
    text-decoration: none;
    font-size: 0.95rem;
}

.cookie-actions a:hover {
    text-decoration: underline;
}

.page-hero-offset {
    padding: 100px 5% 60px 10%;
    background-color: #f8f9fa;
}

.page-hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    color: #1a252f;
    max-width: 800px;
}

.page-hero-content p {
    margin-top: 20px;
    font-size: 1.15rem;
    color: #5a6c7d;
    max-width: 700px;
}

.about-story-irregular {
    padding: 80px 5%;
}

.story-text-wide {
    max-width: 900px;
    margin: 0 auto 60px auto;
    padding: 0 5%;
}

.story-text-wide h2 {
    font-size: 2.3rem;
    margin-bottom: 20px;
    color: #1a252f;
}

.story-text-wide p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 18px;
    line-height: 1.7;
}

.story-image-offset {
    max-width: 700px;
    margin: 60px auto 60px 15%;
    transform: translateX(-40px);
}

.story-image-offset img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    background-color: #e9ecef;
}

.story-text-narrow {
    max-width: 650px;
    margin: 0 auto 0 20%;
    padding: 0 5%;
}

.story-text-narrow h2 {
    font-size: 2.3rem;
    margin-bottom: 20px;
    color: #1a252f;
}

.story-text-narrow p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 18px;
    line-height: 1.7;
}

.values-asymmetric {
    padding: 80px 5%;
    background-color: #f8f9fa;
}

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

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

.values-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    width: calc(50% - 20px);
    max-width: 450px;
    padding: 35px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.value-card.offset-left {
    transform: translateX(-30px);
}

.value-card.offset-right {
    transform: translateX(30px);
}

.value-card.offset-center {
    transform: translateY(20px);
}

.value-card.offset-bottom {
    transform: translateY(-20px);
}

.value-card h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: #1a252f;
}

.value-card p {
    color: #5a6c7d;
    line-height: 1.6;
}

.team-section-split {
    display: flex;
    padding: 80px 5%;
    gap: 60px;
    align-items: center;
}

.team-content {
    flex: 1;
    padding-right: 40px;
}

.team-content h2 {
    font-size: 2.3rem;
    margin-bottom: 20px;
    color: #1a252f;
}

.team-content p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 18px;
    line-height: 1.7;
}

.team-image {
    flex: 1;
}

.team-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    background-color: #e9ecef;
}

.cta-section-offset {
    padding: 100px 5% 100px 15%;
    background-color: #f8f9fa;
}

.cta-block {
    max-width: 600px;
}

.cta-block h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
    color: #1a252f;
}

.cta-block p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 25px;
}

.services-detailed-asymmetric {
    padding: 60px 5% 100px 5%;
}

.service-detail-card {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.service-detail-card.offset-style-1 {
    transform: translateX(40px);
}

.service-detail-card.offset-style-2 {
    transform: translateX(-40px);
    flex-direction: row-reverse;
}

.service-detail-card.offset-style-3 {
    transform: translateX(30px);
}

.service-detail-card.offset-style-4 {
    transform: translateX(-30px);
    flex-direction: row-reverse;
}

.service-detail-card.offset-style-5 {
    transform: translateX(50px);
}

.service-detail-card.offset-style-6 {
    transform: translateX(-50px);
    flex-direction: row-reverse;
}

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

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    background-color: #e9ecef;
}

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

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #1a252f;
}

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

.service-detail-content p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 18px;
    line-height: 1.7;
}

.service-detail-content h3 {
    font-size: 1.4rem;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #1a252f;
}

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

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

.contact-layout-asymmetric {
    display: flex;
    padding: 80px 5%;
    gap: 80px;
    align-items: flex-start;
}

.contact-info-block {
    flex: 1;
    max-width: 450px;
}

.contact-info-block h2 {
    font-size: 2.3rem;
    margin-bottom: 30px;
    color: #1a252f;
}

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

.contact-detail h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #1a252f;
}

.contact-detail p {
    color: #5a6c7d;
    line-height: 1.6;
}

.contact-image-offset {
    flex: 1;
    transform: translateY(40px);
}

.contact-image-offset img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    background-color: #e9ecef;
}

.contact-text-section {
    padding: 60px 5% 60px 15%;
}

.contact-text-narrow {
    max-width: 650px;
}

.contact-text-narrow h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #1a252f;
}

.contact-text-narrow p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 18px;
    line-height: 1.7;
}

.contact-cta-offset {
    padding: 80px 5% 80px 10%;
    background-color: #f8f9fa;
}

.thanks-hero-offset {
    padding: 100px 5% 80px 10%;
    background-color: #f8f9fa;
}

.thanks-content {
    max-width: 800px;
}

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #1a252f;
}

.thanks-content p {
    font-size: 1.15rem;
    color: #5a6c7d;
    margin-bottom: 25px;
}

.thanks-details {
    padding: 20px;
    background-color: #ffffff;
    border-radius: 6px;
    margin-bottom: 40px;
}

.thanks-details p {
    margin: 0;
}

.thanks-content h2 {
    font-size: 2rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a252f;
}

.thanks-steps {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.thanks-steps li {
    padding: 15px 0 15px 35px;
    position: relative;
    color: #5a6c7d;
    font-size: 1.05rem;
}

.thanks-steps li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
    font-size: 1.3rem;
}

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

.thanks-additional-info {
    padding: 60px 5% 80px 15%;
}

.info-block-offset {
    max-width: 550px;
}

.info-block-offset h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #1a252f;
}

.info-block-offset p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.cta-text {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s;
}

.cta-text:hover {
    border-bottom-color: #3498db;
}

.legal-page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 5%;
}

.legal-page-content h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: #1a252f;
}

.legal-page-content h2 {
    font-size: 1.8rem;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #1a252f;
}

.legal-page-content h3 {
    font-size: 1.4rem;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.legal-page-content p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 18px;
    line-height: 1.7;
}

.legal-page-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.legal-page-content ul li {
    color: #5a6c7d;
    margin-bottom: 10px;
    line-height: 1.6;
}

.legal-page-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.legal-page-content table th,
.legal-page-content table td {
    padding: 12px;
    border: 1px solid #dee2e6;
    text-align: left;
}

.legal-page-content table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #1a252f;
}

.legal-page-content table td {
    color: #5a6c7d;
}

@media (max-width: 768px) {
    .hero-offset,
    .intro-asymmetric,
    .approach-split,
    .team-section-split,
    .contact-layout-asymmetric,
    .service-detail-card {
        flex-direction: column;
        padding: 60px 5%;
    }

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

    .services-grid-irregular .service-card,
    .values-grid-irregular .value-card {
        width: 100%;
    }

    .nav-links {
        gap: 15px;
    }

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