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

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

img {
    object-fit: cover;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem 2rem;
    display: none;
    justify-content: space-between;
    align-items: center;
    z-index: 10000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

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

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

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 2rem;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-accept {
    background-color: #2ecc71;
    color: #ffffff;
}

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

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

.btn-reject:hover {
    background-color: #ffffff;
    color: #1a1a1a;
}

.header-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4rem;
    background-color: #ffffff;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.header-left {
    position: relative;
}

.brand-mark {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

.nav-floating {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-floating a {
    color: #34495e;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-floating a:hover {
    color: #16a085;
}

.ad-disclosure {
    background-color: #f39c12;
    color: #ffffff;
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 3px;
}

.hero-offset {
    position: relative;
    width: 100%;
    height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #e8f4f8;
}

.hero-image-container {
    position: absolute;
    top: 0;
    right: 0;
    width: 68%;
    height: 100%;
    transform: skewX(-3deg);
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    transform: skewX(3deg) scale(1.15);
}

.hero-text-overlay {
    position: relative;
    z-index: 10;
    max-width: 550px;
    margin-left: 8%;
    padding: 3rem;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.hero-text-overlay h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-text-overlay p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.8;
}

.intro-diagonal {
    display: flex;
    align-items: center;
    padding: 6rem 4rem;
    gap: 4rem;
    background-color: #ffffff;
}

.diagonal-block {
    flex: 1;
    padding-right: 2rem;
    transform: translateY(-20px);
}

.diagonal-block h2 {
    font-size: 2.6rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.diagonal-block p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.9;
}

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

.diagonal-image img {
    width: 100%;
    height: auto;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.services-grid-offset {
    padding: 7rem 4rem;
    background-color: #f8f9fa;
}

.section-header-asymmetric {
    max-width: 600px;
    margin-bottom: 5rem;
    margin-left: 10%;
}

.section-header-asymmetric h2 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header-asymmetric p {
    font-size: 1.15rem;
    color: #666;
}

.services-container-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background-color: #ffffff;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    position: relative;
}

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

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

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

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

.service-card.offset-left {
    margin-left: -30px;
}

.service-card.offset-right {
    margin-right: -30px;
}

.service-card.offset-bottom-right {
    transform: translate(20px, 30px);
}

.service-image-wrap {
    width: 100%;
    height: 220px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    background-color: #ecf0f1;
}

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

.service-card h3 {
    font-size: 1.6rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-card p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-card .price {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #16a085;
    margin-bottom: 1.5rem;
}

.select-service {
    width: 100%;
    padding: 1rem;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service:hover {
    background-color: #16a085;
}

.select-service.selected {
    background-color: #16a085;
}

.form-section-offset {
    padding: 7rem 4rem;
    background-color: #e8f4f8;
    position: relative;
}

.form-container-asymmetric {
    max-width: 650px;
    margin-left: auto;
    margin-right: 10%;
    background-color: #ffffff;
    padding: 3.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transform: translateX(-50px);
}

.form-container-asymmetric h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.form-intro {
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 2.5rem;
}

.selected-service-display {
    background-color: #d5f4e6;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-left: 4px solid #16a085;
}

.selected-service-display p {
    margin: 0;
    font-size: 1.05rem;
    color: #2c3e50;
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #ddd;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background-color: #16a085;
    color: #ffffff;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #138d75;
}

.trust-section-irregular {
    display: flex;
    align-items: center;
    gap: 5rem;
    padding: 7rem 4rem;
    background-color: #2c3e50;
    color: #ffffff;
}

.trust-content-left {
    flex: 1.2;
    transform: translateX(60px);
}

.trust-content-left h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.trust-content-left p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #ecf0f1;
}

.trust-stats-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.stat-block {
    display: flex;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-left: 4px solid #16a085;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #16a085;
}

.stat-label {
    font-size: 1.1rem;
    color: #ecf0f1;
    margin-top: 0.5rem;
}

.footer-asymmetric {
    background-color: #1a252f;
    color: #ecf0f1;
    padding: 4rem 4rem 2rem 4rem;
    position: relative;
}

.footer-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.footer-column-left,
.footer-column-center,
.footer-column-right {
    flex: 1;
    min-width: 200px;
}

.footer-column-left {
    transform: translateY(-10px);
}

.footer-column-center {
    transform: translateY(10px);
}

.footer-column-right {
    transform: translateY(-5px);
}

.footer-asymmetric h3,
.footer-asymmetric h4 {
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-asymmetric h3 {
    font-size: 1.5rem;
}

.footer-asymmetric h4 {
    font-size: 1.1rem;
}

.footer-asymmetric p {
    font-size: 0.95rem;
    color: #bdc3c7;
}

.footer-column-center a,
.footer-column-right a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
}

.footer-column-center a:hover,
.footer-column-right a:hover {
    color: #16a085;
}

.footer-disclaimer {
    width: 100%;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    color: #95a5a6;
    line-height: 1.7;
}

.about-hero-diagonal {
    padding: 6rem 4rem;
    background-color: #16a085;
    color: #ffffff;
    transform: skewY(-2deg);
    margin-bottom: 4rem;
}

.about-text-block {
    transform: skewY(2deg);
    max-width: 800px;
    margin: 0 auto;
}

.about-text-block h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.about-text-block p {
    font-size: 1.3rem;
    line-height: 1.8;
}

.about-content-offset {
    display: flex;
    gap: 5rem;
    padding: 5rem 4rem;
    background-color: #ffffff;
}

.content-irregular-left {
    flex: 1.5;
    transform: translateY(-30px);
}

.content-irregular-left h2 {
    font-size: 2.4rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.content-irregular-left p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.content-irregular-right {
    flex: 1;
    background-color: #f8f9fa;
    padding: 2.5rem;
    transform: translateY(40px);
}

.content-irregular-right h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.content-irregular-right p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.team-section-asymmetric {
    padding: 6rem 4rem;
    background-color: #f8f9fa;
}

.team-section-asymmetric h2 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 4rem;
    text-align: center;
    font-weight: 700;
}

.team-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    background-color: #ffffff;
    padding: 2.5rem;
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.team-member.offset-style-one {
    transform: translateY(-25px);
}

.team-member.offset-style-two {
    transform: translateY(25px);
}

.team-member.offset-style-three {
    transform: translateY(0);
}

.team-member h3 {
    font-size: 1.6rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.team-member .role {
    font-size: 0.95rem;
    color: #16a085;
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.team-member p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
}

.values-offset-section {
    padding: 6rem 4rem;
    background-color: #ffffff;
}

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

.value-block-left,
.value-block-right,
.value-block-center {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    padding: 2.5rem;
    border-left: 5px solid #16a085;
    background-color: #f8f9fa;
}

.value-block-left {
    transform: translateX(-20px);
}

.value-block-right {
    transform: translateX(20px);
}

.value-block-center {
    transform: translateY(30px);
}

.value-block-left h3,
.value-block-right h3,
.value-block-center h3 {
    font-size: 1.6rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.value-block-left p,
.value-block-right p,
.value-block-center p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
}

.services-hero-offset {
    padding: 6rem 4rem;
    background-color: #2c3e50;
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-hero-offset::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10%;
    width: 40%;
    height: 100%;
    background-color: rgba(22, 160, 133, 0.3);
    transform: skewX(-15deg);
}

.services-hero-offset h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    font-weight: 800;
}

.services-hero-offset p {
    font-size: 1.3rem;
    position: relative;
    z-index: 1;
}

.services-detailed-irregular {
    padding: 5rem 4rem;
    background-color: #f8f9fa;
}

.service-detail {
    margin-bottom: 4rem;
    background-color: #ffffff;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-detail.offset-layout-one {
    margin-left: 10%;
    margin-right: 5%;
}

.service-detail.offset-layout-two {
    margin-left: 5%;
    margin-right: 10%;
}

.service-detail.offset-layout-three {
    margin-left: 15%;
    margin-right: 0;
}

.service-detail.offset-layout-four {
    margin-left: 0;
    margin-right: 15%;
}

.service-detail.offset-layout-five {
    margin-left: 8%;
    margin-right: 8%;
}

.service-detail.offset-layout-six {
    margin-left: 12%;
    margin-right: 3%;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #16a085;
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 2rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.service-features li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    color: #555;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #16a085;
    font-weight: 700;
    font-size: 1.2rem;
}

.select-service-btn {
    padding: 1.2rem 3rem;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service-btn:hover {
    background-color: #16a085;
}

.service-addons-section {
    padding: 5rem 4rem;
    background-color: #ffffff;
}

.service-addons-section h2 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

.addons-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.addon-item {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-top: 4px solid #16a085;
}

.addon-item:nth-child(1) {
    transform: translateY(-15px);
}

.addon-item:nth-child(2) {
    transform: translateY(15px);
}

.addon-item:nth-child(3) {
    transform: translateY(0);
}

.addon-item h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.addon-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.addon-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #16a085;
}

.contact-hero-irregular {
    padding: 6rem 4rem;
    background-color: #16a085;
    color: #ffffff;
    position: relative;
}

.contact-hero-irregular::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    transform: skewX(10deg);
}

.contact-hero-irregular h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    font-weight: 800;
}

.contact-hero-irregular p {
    font-size: 1.3rem;
    position: relative;
    z-index: 1;
}

.contact-info-asymmetric {
    display: flex;
    gap: 5rem;
    padding: 6rem 4rem;
    background-color: #ffffff;
}

.contact-block-left {
    flex: 1;
    transform: translateY(-30px);
}

.contact-block-left h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 2.5rem;
    font-weight: 700;
}

.contact-detail {
    margin-bottom: 2.5rem;
}

.contact-detail h3 {
    font-size: 1.3rem;
    color: #16a085;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.contact-detail p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.contact-block-right {
    flex: 1;
    background-color: #f8f9fa;
    padding: 3rem;
    transform: translateY(30px);
}

.contact-block-right h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    font-weight: 700;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid #ddd;
}

.hours-row .day {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1.05rem;
}

.hours-row .time {
    color: #555;
    font-size: 1.05rem;
}

.contact-directions-offset {
    padding: 5rem 4rem;
    background-color: #f8f9fa;
}

.contact-directions-offset h2 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 3rem;
    font-weight: 700;
}

.directions-content-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1200px;
}

.direction-method {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    padding: 2.5rem;
    background-color: #ffffff;
    border-left: 4px solid #16a085;
}

.direction-method:nth-child(1) {
    transform: translateY(-20px);
}

.direction-method:nth-child(2) {
    transform: translateY(20px);
}

.direction-method:nth-child(3) {
    transform: translateY(0);
}

.direction-method h3 {
    font-size: 1.6rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.direction-method p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
}

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

.note-container-asymmetric {
    max-width: 800px;
    margin-left: auto;
    margin-right: 10%;
    padding: 3rem;
    background-color: #e8f4f8;
    transform: translateX(-40px);
}

.note-container-asymmetric h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.note-container-asymmetric p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.thanks-hero-offset {
    padding: 6rem 4rem;
    background-color: #f8f9fa;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content-asymmetric {
    max-width: 900px;
    text-align: center;
}

.thanks-content-asymmetric h1 {
    font-size: 3.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.thanks-message {
    font-size: 1.3rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 3rem;
}

.confirmation-details {
    background-color: #d5f4e6;
    padding: 2.5rem;
    margin-bottom: 3rem;
    border-left: 5px solid #16a085;
}

.selected-service-confirmation h3 {
    font-size: 1.6rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.selected-service-confirmation p {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.price-display {
    font-size: 2rem;
    font-weight: 700;
    color: #16a085;
}

.next-steps-irregular {
    margin-bottom: 3rem;
    text-align: left;
}

.next-steps-irregular h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 2.5rem;
    text-align: center;
    font-weight: 700;
}

.step-block {
    background-color: #ffffff;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.step-block:nth-child(odd) {
    transform: translateX(-20px);
}

.step-block:nth-child(even) {
    transform: translateX(20px);
}

.step-block h3 {
    font-size: 1.4rem;
    color: #16a085;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.step-block p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
}

.thanks-actions {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 1.2rem 3rem;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #16a085;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #138d75;
}

.btn-secondary {
    background-color: transparent;
    color: #2c3e50;
    border: 2px solid #2c3e50;
}

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

.preparation-tips-offset {
    padding: 5rem 4rem;
    background-color: #ffffff;
}

.preparation-tips-offset h2 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

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

.tip-item {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    padding: 2.5rem;
    background-color: #f8f9fa;
    border-top: 4px solid #16a085;
}

.tip-item:nth-child(1) {
    transform: translateY(-20px);
}

.tip-item:nth-child(2) {
    transform: translateY(20px);
}

.tip-item:nth-child(3) {
    transform: translateY(0);
}

.tip-item h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.tip-item p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
}

.legal-page-content {
    padding: 5rem 4rem;
    max-width: 1000px;
    margin: 0 auto;
    background-color: #ffffff;
}

.legal-page-content h1 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 800;
}

.last-updated {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-page-content h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-top: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.legal-page-content h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.legal-page-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.legal-page-content ul {
    margin-bottom: 2rem;
    margin-left: 2rem;
}

.legal-page-content ul li {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 0.8rem;
}

.legal-page-content a {
    color: #16a085;
    text-decoration: none;
}

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

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
}

.cookies-table thead {
    background-color: #2c3e50;
    color: #ffffff;
}

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

.cookies-table th {
    font-weight: 700;
}

@media (max-width: 1024px) {
    .hero-offset {
        height: 70vh;
    }

    .hero-text-overlay h1 {
        font-size: 2.5rem;
    }

    .intro-diagonal {
        flex-direction: column;
    }

    .services-container-irregular {
        gap: 2rem;
    }

    .service-card {
        flex: 1 1 calc(50% - 1rem);
    }

    .trust-section-irregular {
        flex-direction: column;
        gap: 3rem;
    }

    .trust-content-left {
        transform: translateX(0);
    }

    .contact-info-asymmetric {
        flex-direction: column;
        gap: 3rem;
    }

    .contact-block-left,
    .contact-block-right {
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .header-asymmetric {
        padding: 1.5rem 2rem;
        flex-direction: column;
        gap: 1.5rem;
    }

    .nav-floating {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-offset {
        height: 60vh;
    }

    .hero-image-container {
        width: 100%;
        transform: none;
    }

    .hero-image {
        transform: none;
    }

    .hero-text-overlay {
        margin-left: 0;
        max-width: 100%;
    }

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

    .service-card {
        flex: 1 1 100%;
        transform: none;
        margin: 0;
    }

    .service-card.offset-top,
    .service-card.offset-bottom,
    .service-card.offset-middle,
    .service-card.offset-left,
    .service-card.offset-right,
    .service-card.offset-bottom-right {
        transform: none;
        margin: 0;
    }

    .form-container-asymmetric {
        margin-left: 0;
        margin-right: 0;
        transform: none;
        padding: 2rem;
    }

    .footer-asymmetric {
        padding: 3rem 2rem;
    }

    .footer-column-left,
    .footer-column-center,
    .footer-column-right {
        transform: none;
    }

    .service-detail {
        margin-left: 0;
        margin-right: 0;
        padding: 2rem;
    }

    .about-content-offset {
        flex-direction: column;
        gap: 2rem;
    }

    .content-irregular-left,
    .content-irregular-right {
        transform: none;
    }

    .team-member {
        flex: 1 1 100%;
        transform: none;
    }

    .value-block-left,
    .value-block-right,
    .value-block-center {
        transform: none;
    }

    .direction-method {
        transform: none;
    }

    .note-container-asymmetric {
        margin-left: 0;
        margin-right: 0;
        transform: none;
        padding: 2rem;
    }

    .step-block {
        transform: none;
    }

    .tip-item {
        transform: none;
    }

    .addon-item {
        transform: none;
    }
}