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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1 1 300px;
    margin: 0;
}

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

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

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

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

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

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

.navbar {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.ad-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    padding: 4px 8px;
    background-color: #ecf0f1;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

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

.hero-asymmetric {
    min-height: 600px;
    display: flex;
    position: relative;
    overflow: hidden;
    background-color: #f8f9fa;
}

.hero-content-offset {
    flex: 0 0 45%;
    padding: 80px 60px;
    display: flex;
    align-items: center;
    z-index: 10;
}

.hero-text-block {
    max-width: 500px;
}

.hero-text-block h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

.hero-image-offset {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

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

.cta-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.intro-offset {
    display: flex;
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 20px;
    gap: 60px;
    align-items: center;
}

.intro-narrow {
    flex: 0 0 55%;
    padding-right: 40px;
}

.intro-narrow h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

.intro-visual {
    flex: 1;
    background-color: #e8f4f8;
    padding: 20px;
    border-radius: 8px;
}

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

.services-asymmetric {
    background-color: #fafafa;
    padding: 100px 20px;
}

.services-header-offset {
    max-width: 1400px;
    margin: 0 auto 60px;
    padding-left: 80px;
}

.services-header-offset h2 {
    font-size: 42px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.services-header-offset p {
    font-size: 18px;
    color: #7f8c8d;
}

.services-grid-irregular {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-large {
    flex: 1 1 calc(60% - 15px);
    min-width: 400px;
}

.card-medium {
    flex: 1 1 calc(50% - 15px);
    min-width: 350px;
}

.card-small {
    flex: 1 1 calc(40% - 15px);
    min-width: 300px;
}

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

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

.service-info {
    padding: 30px;
}

.service-info h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.service-info p {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

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

.select-service:hover {
    background-color: #2980b9;
    transform: translateX(4px);
}

.approach-section {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 20px;
}

.approach-split {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.approach-text {
    flex: 1 1 60%;
}

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

.approach-text p {
    font-size: 17px;
    color: #555;
    margin-bottom: 18px;
    line-height: 1.8;
}

.link-arrow {
    display: inline-block;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    margin-top: 10px;
    transition: transform 0.3s ease;
}

.link-arrow:hover {
    transform: translateX(6px);
}

.approach-stats {
    flex: 0 0 35%;
    background-color: #2c3e50;
    padding: 40px;
    border-radius: 8px;
    color: #ffffff;
}

.stat-item {
    margin-bottom: 40px;
}

.stat-item:last-child {
    margin-bottom: 0;
}

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

.stat-label {
    font-size: 15px;
    line-height: 1.5;
}

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

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

.testimonials-irregular {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.testimonial-card:nth-child(2) {
    transform: translateY(20px);
}

.testimonial-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-author {
    font-size: 14px;
    color: #7f8c8d;
    font-style: italic;
}

.form-section {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 20px;
}

.form-container-offset {
    max-width: 650px;
    margin-left: 100px;
}

.form-container-offset h2 {
    font-size: 38px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.form-container-offset > p {
    font-size: 17px;
    color: #666;
    margin-bottom: 40px;
}

.contact-form {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    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: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #229954;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

.disclaimer-section {
    background-color: #fff9e6;
    padding: 60px 20px;
    border-top: 3px solid #f39c12;
    border-bottom: 3px solid #f39c12;
}

.disclaimer-content {
    max-width: 1100px;
    margin: 0 auto;
}

.disclaimer-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
}

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

.footer-content {
    max-width: 1400px;
    margin: 0 auto 40px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

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

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

.footer-column p,
.footer-column ul {
    font-size: 14px;
    line-height: 1.8;
}

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

.footer-column a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.page-header {
    max-width: 1400px;
    margin: 80px auto 60px;
    padding: 0 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.page-header p {
    font-size: 18px;
    color: #7f8c8d;
    max-width: 700px;
    margin: 0 auto;
}

.services-detail {
    max-width: 1400px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

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

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

.service-detail-visual {
    flex: 0 0 45%;
    background-color: #e8f4f8;
    padding: 20px;
    border-radius: 8px;
}

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

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

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

.price-tag {
    font-size: 26px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

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

.service-detail-content h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

.service-detail-content li {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 8px;
}

.cta-services {
    text-align: center;
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.cta-services h2 {
    font-size: 36px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.cta-services p {
    font-size: 17px;
    color: #7f8c8d;
    margin-bottom: 30px;
}

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

.btn-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.about-hero {
    background-color: #f8f9fa;
    padding: 100px 20px;
}

.about-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #2c3e50;
}

.about-hero-content p {
    font-size: 19px;
    color: #555;
    line-height: 1.8;
}

.about-story {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 20px;
    display: flex;
    gap: 80px;
    align-items: center;
}

.story-block {
    flex: 1 1 55%;
}

.story-block h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #2c3e50;
}

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

.story-visual {
    flex: 0 0 40%;
    background-color: #e8f4f8;
    padding: 20px;
    border-radius: 8px;
}

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

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

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

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

.philosophy-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

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

.philosophy-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.team-approach {
    max-width: 900px;
    margin: 100px auto;
    padding: 0 20px;
}

.team-approach h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #2c3e50;
}

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

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

.results-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
}

.results-stats {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.result-item {
    flex: 1 1 250px;
    text-align: center;
}

.result-number {
    font-size: 56px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 16px;
}

.result-item p {
    font-size: 16px;
    line-height: 1.6;
}

.about-cta {
    text-align: center;
    padding: 100px 20px;
}

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

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

.contact-header {
    max-width: 900px;
    margin: 80px auto 60px;
    padding: 0 20px;
    text-align: center;
}

.contact-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.contact-header p {
    font-size: 18px;
    color: #7f8c8d;
}

.contact-main {
    max-width: 1400px;
    margin: 0 auto 80px;
    padding: 0 20px;
    display: flex;
    gap: 60px;
}

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

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

.info-item {
    margin-bottom: 40px;
}

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

.info-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.hours-note {
    margin-top: 12px;
    font-size: 14px;
    color: #7f8c8d;
    font-style: italic;
}

.contact-visual {
    flex: 0 0 35%;
    background-color: #e8f4f8;
    padding: 20px;
    border-radius: 8px;
    align-self: flex-start;
}

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

.contact-notes {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 20px;
}

.contact-notes h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #2c3e50;
}

.notes-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.note-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

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

.note-item ul {
    padding-left: 20px;
}

.note-item li {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 10px;
}

.contact-directions {
    max-width: 900px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.contact-directions h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.contact-directions p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 16px;
}

.thanks-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background-color: #f8f9fa;
}

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

.thanks-content h1 {
    font-size: 46px;
    margin-bottom: 20px;
    color: #27ae60;
}

.thanks-content > p {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.8;
}

.thanks-details {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 50px;
    border-left: 4px solid #3498db;
    text-align: left;
}

.thanks-next h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.next-steps {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    justify-content: center;
}

.step {
    flex: 1 1 200px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    text-align: left;
}

.step h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #3498db;
}

.step p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.thanks-info {
    background-color: #fff9e6;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.thanks-info h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.thanks-info p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 8px;
}

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

.btn-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 ease;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cookie-table tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}

@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
    }

    .hero-content-offset,
    .hero-image-offset {
        flex: 1 1 100%;
    }

    .hero-image-offset {
        min-height: 400px;
    }

    .intro-offset,
    .approach-split,
    .about-story,
    .contact-main {
        flex-direction: column;
    }

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

    .service-detail-visual {
        flex: 1 1 100%;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

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

    .services-header-offset {
        padding-left: 0;
    }

    .card-large,
    .card-medium,
    .card-small {
        flex: 1 1 100%;
    }

    .form-container-offset {
        margin-left: 0;
    }

    .testimonials-irregular {
        flex-direction: column;
    }

    .testimonial-card:nth-child(2) {
        transform: none;
    }

    .philosophy-item,
    .note-item {
        flex: 1 1 100%;
    }

    .next-steps {
        flex-direction: column;
    }
}