* {
    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.6;
    color: #2c2c2c;
    display: flex;
    min-height: 100vh;
    background-color: #fafafa;
}

.sidebar {
    width: 280px;
    background-color: #2d5016;
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px 30px;
    z-index: 1000;
}

.sidebar-header {
    margin-bottom: 50px;
}

.brand-name {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: #fff;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;
}

.nav-link {
    color: #d8e5cc;
    text-decoration: none;
    padding: 14px 18px;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 500;
}

.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    transform: translateX(5px);
}

.nav-link.active {
    background-color: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.sidebar-footer {
    margin-top: auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.ad-notice {
    font-size: 12px;
    color: #d8e5cc;
    line-height: 1.4;
}

.main-content {
    margin-left: 280px;
    flex: 1;
    width: calc(100% - 280px);
}

.hero-section {
    position: relative;
    background-color: #f5f5f5;
    overflow: hidden;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 600px;
    background-color: #3a3a3a;
    overflow: hidden;
}

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

.hero-content {
    position: absolute;
    top: 50%;
    left: 60px;
    transform: translateY(-50%);
    max-width: 600px;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 35px;
    font-weight: 400;
    line-height: 1.5;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: #2d5016;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #3d6b1f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 80, 22, 0.3);
}

.intro-section {
    padding: 80px 60px;
    background-color: #fff;
}

.intro-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
}

.intro-text {
    flex: 1;
}

.intro-text h3 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2d5016;
}

.intro-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.intro-image {
    flex: 0 0 450px;
    background-color: #e8e8e8;
}

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

.values-section {
    padding: 80px 60px;
    background-color: #f9f9f9;
}

.section-heading {
    font-size: 40px;
    text-align: center;
    margin-bottom: 50px;
    color: #2d5016;
}

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

.value-card {
    flex: 1 1 calc(33.333% - 20px);
    background-color: #fff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

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

.services-preview {
    padding: 80px 60px;
    background-color: #fff;
}

.services-intro {
    text-align: center;
    margin-bottom: 50px;
}

.services-intro h3 {
    font-size: 40px;
    margin-bottom: 15px;
    color: #2d5016;
}

.services-intro p {
    font-size: 18px;
    color: #666;
}

.services-cards {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    flex: 1;
    background-color: #fafafa;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

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

.service-card h4 {
    font-size: 22px;
    padding: 20px 20px 10px;
    color: #2d5016;
}

.service-card p {
    padding: 0 20px 15px;
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.service-card .price {
    display: block;
    padding: 15px 20px 20px;
    font-size: 26px;
    font-weight: 700;
    color: #2d5016;
}

.cta-center {
    text-align: center;
    margin-top: 40px;
}

.cta-link {
    display: inline-block;
    padding: 14px 35px;
    background-color: transparent;
    color: #2d5016;
    text-decoration: none;
    border: 2px solid #2d5016;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-link:hover {
    background-color: #2d5016;
    color: #fff;
}

.form-section {
    padding: 80px 60px;
    background-color: #f5f5f5;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #fff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.form-container h3 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #2d5016;
    text-align: center;
}

.form-intro {
    text-align: center;
    margin-bottom: 35px;
    font-size: 16px;
    color: #666;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    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: #2d5016;
}

.submit-button {
    padding: 16px;
    background-color: #2d5016;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background-color: #3d6b1f;
    transform: translateY(-2px);
}

.testimonials-section {
    padding: 80px 60px;
    background-color: #fff;
}

.testimonials-section h3 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 50px;
    color: #2d5016;
}

.testimonials-wrapper {
    display: flex;
    gap: 40px;
}

.testimonial {
    flex: 1;
    background-color: #f9f9f9;
    padding: 35px;
    border-radius: 8px;
    border-left: 4px solid #2d5016;
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #333;
    font-style: italic;
}

.testimonial-author {
    font-size: 15px;
    font-weight: 600;
    color: #2d5016;
}

.closing-section {
    padding: 100px 60px;
    background-color: #2d5016;
    text-align: center;
}

.closing-content h3 {
    font-size: 42px;
    color: #fff;
    margin-bottom: 20px;
}

.closing-content p {
    font-size: 18px;
    color: #d8e5cc;
    margin-bottom: 35px;
}

.cta-button-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #fff;
    color: #2d5016;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button-secondary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.footer {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 50px 60px 30px;
}

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

.footer-section h4 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 15px;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    padding: 20px;
    background-color: #252525;
    border-radius: 6px;
    margin-bottom: 20px;
}

.footer-disclaimer p {
    font-size: 12px;
    line-height: 1.6;
    color: #aaa;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    font-size: 13px;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 280px;
    right: 0;
    background-color: #1a1a1a;
    padding: 25px 60px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: none;
}

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

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    color: #ccc;
    line-height: 1.6;
}

.cookie-content a {
    color: #4a9f2e;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background-color: #2d5016;
    color: #fff;
}

.cookie-btn.accept:hover {
    background-color: #3d6b1f;
}

.cookie-btn.reject {
    background-color: transparent;
    color: #ccc;
    border: 1px solid #666;
}

.cookie-btn.reject:hover {
    background-color: #333;
    color: #fff;
}

.page-header {
    padding: 60px 60px 40px;
    background-color: #f5f5f5;
}

.page-header h2 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #2d5016;
}

.page-subtitle {
    font-size: 18px;
    color: #666;
}

.services-detailed {
    padding: 40px 60px 80px;
}

.service-detail-card {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

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

.service-detail-image {
    flex: 0 0 400px;
    background-color: #e0e0e0;
}

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

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

.service-detail-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2d5016;
}

.service-description {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #4a4a4a;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.service-duration {
    font-size: 14px;
    color: #888;
}

.service-price-large {
    font-size: 32px;
    font-weight: 700;
    color: #2d5016;
}

.service-cta {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background-color: #2d5016;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-cta:hover {
    background-color: #3d6b1f;
    transform: translateY(-2px);
}

.additional-info {
    padding: 80px 60px;
    background-color: #f9f9f9;
}

.additional-info h3 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2d5016;
    text-align: center;
}

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

.info-block {
    flex: 1;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.info-block h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2d5016;
}

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

.about-story {
    padding: 60px;
    display: flex;
    gap: 60px;
    align-items: center;
    background-color: #fff;
}

.story-content {
    flex: 1;
}

.story-content h3 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2d5016;
}

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

.story-image {
    flex: 0 0 450px;
    background-color: #e0e0e0;
}

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

.philosophy-section {
    padding: 80px 60px;
    background-color: #f9f9f9;
}

.philosophy-section h3 {
    font-size: 40px;
    margin-bottom: 50px;
    text-align: center;
    color: #2d5016;
}

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

.philosophy-item {
    flex: 1 1 calc(50% - 15px);
    background-color: #fff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

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

.team-section {
    padding: 80px 60px;
    background-color: #fff;
}

.team-section h3 {
    font-size: 40px;
    margin-bottom: 25px;
    text-align: center;
    color: #2d5016;
}

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

.team-intro p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
}

.team-image-container {
    margin-bottom: 30px;
    background-color: #e0e0e0;
}

.team-image-container img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

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

.team-description p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
}

.workspace-section {
    padding: 80px 60px;
    background-color: #f9f9f9;
}

.workspace-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
}

.workspace-text {
    flex: 1;
}

.workspace-text h3 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2d5016;
}

.workspace-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.workspace-image {
    flex: 0 0 450px;
    background-color: #e0e0e0;
}

.workspace-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.values-narrative {
    padding: 80px 60px;
    background-color: #fff;
}

.values-narrative h3 {
    font-size: 40px;
    margin-bottom: 35px;
    text-align: center;
    color: #2d5016;
}

.narrative-text {
    max-width: 900px;
    margin: 0 auto 25px;
    font-size: 18px;
    line-height: 1.9;
    color: #4a4a4a;
    text-align: center;
}

.closing-about {
    padding: 80px 60px;
    background-color: #2d5016;
    text-align: center;
}

.closing-about h3 {
    font-size: 42px;
    color: #fff;
    margin-bottom: 20px;
}

.closing-about p {
    font-size: 18px;
    color: #d8e5cc;
    margin-bottom: 35px;
}

.contact-main {
    padding: 60px;
    background-color: #fff;
}

.contact-layout {
    display: flex;
    gap: 60px;
}

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

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

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

.contact-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2d5016;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 8px;
}

.contact-note {
    font-size: 14px;
    color: #888;
    font-style: italic;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.hours-table tr {
    border-bottom: 1px solid #e0e0e0;
}

.hours-table td {
    padding: 10px 0;
    font-size: 15px;
}

.hours-table td:first-child {
    color: #666;
    font-weight: 500;
}

.hours-table td:last-child {
    text-align: right;
    color: #2d5016;
    font-weight: 600;
}

.contact-link {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 25px;
    background-color: #2d5016;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background-color: #3d6b1f;
    transform: translateY(-2px);
}

.contact-image-block {
    flex: 0 0 450px;
    background-color: #e0e0e0;
}

.contact-image-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.directions-section {
    padding: 80px 60px;
    background-color: #f9f9f9;
}

.directions-section h3 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #2d5016;
}

.directions-content {
    display: flex;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.direction-block {
    flex: 1;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.direction-block h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2d5016;
}

.direction-block p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 10px;
}

.direction-block .note {
    font-size: 13px;
    color: #888;
    font-style: italic;
    margin-top: 15px;
}

.faq-section {
    padding: 80px 60px;
    background-color: #fff;
}

.faq-section h3 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #2d5016;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2d5016;
}

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

.final-cta-section {
    padding: 80px 60px;
    background-color: #f9f9f9;
    text-align: center;
}

.final-cta-section h3 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2d5016;
}

.final-cta-section p {
    font-size: 17px;
    margin-bottom: 30px;
    color: #666;
}

.final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.thanks-section {
    padding: 100px 60px;
    background-color: #fff;
}

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

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.thanks-container h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #2d5016;
}

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

.thanks-info {
    background-color: #f9f9f9;
    padding: 35px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2d5016;
}

.thanks-steps {
    list-style: none;
    padding-left: 0;
}

.thanks-steps li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    color: #555;
}

.thanks-steps li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d5016;
    font-weight: 700;
}

.selected-service {
    margin-bottom: 35px;
}

.selected-service h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2d5016;
}

.service-highlight {
    font-size: 20px;
    font-weight: 600;
    color: #2d5016;
}

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

.thanks-contact {
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.thanks-contact p {
    font-size: 15px;
    color: #666;
    margin-bottom: 8px;
}

.legal-page {
    padding: 60px;
    background-color: #fff;
    max-width: 1100px;
    margin: 0 auto;
}

.legal-page h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #2d5016;
}

.legal-intro {
    font-size: 14px;
    color: #888;
    margin-bottom: 40px;
}

.legal-content h3 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2d5016;
}

.legal-content h4 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #2d5016;
}

.legal-content p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #4a4a4a;
}

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

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

.legal-content a {
    color: #2d5016;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #3d6b1f;
}

.no-link {
    color: #2d5016;
    font-weight: 600;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookies-table thead {
    background-color: #f5f5f5;
}

.cookies-table th {
    padding: 12px;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    color: #2d5016;
    border-bottom: 2px solid #2d5016;
}

.cookies-table td {
    padding: 12px;
    font-size: 14px;
    color: #555;
    border-bottom: 1px solid #e0e0e0;
}

@media (max-width: 1200px) {
    .sidebar {
        width: 240px;
        padding: 30px 20px;
    }

    .brand-name {
        font-size: 28px;
    }

    .main-content {
        margin-left: 240px;
        width: calc(100% - 240px);
    }

    .cookie-banner {
        left: 240px;
    }

    .hero-content {
        left: 40px;
        max-width: 500px;
    }

    .hero-title {
        font-size: 48px;
    }
}

@media (max-width: 992px) {
    .sidebar {
        width: 100%;
        height: auto;
        position: relative;
        padding: 30px;
    }

    .main-content {
        margin-left: 0;
        width: 100%;
    }

    .cookie-banner {
        left: 0;
    }

    .intro-wrapper,
    .workspace-wrapper,
    .contact-layout {
        flex-direction: column;
    }

    .intro-image,
    .workspace-image,
    .contact-image-block {
        flex: 1;
        width: 100%;
    }

    .services-cards,
    .testimonials-wrapper,
    .info-blocks,
    .directions-content {
        flex-direction: column;
    }

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

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

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-heading,
    .services-intro h3 {
        font-size: 32px;
    }

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

    .value-card,
    .philosophy-item {
        flex: 1;
    }

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

    .cookie-buttons {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
    }
}

@media (max-width: 576px) {
    body {
        font-size: 14px;
    }

    .hero-image-container {
        height: 400px;
    }

    .hero-content {
        left: 20px;
        right: 20px;
    }

    .intro-section,
    .values-section,
    .services-preview,
    .form-section,
    .testimonials-section,
    .closing-section,
    .footer,
    .page-header,
    .services-detailed,
    .additional-info,
    .about-story,
    .philosophy-section,
    .team-section,
    .workspace-section,
    .values-narrative,
    .closing-about,
    .contact-main,
    .directions-section,
    .faq-section,
    .final-cta-section,
    .thanks-section,
    .legal-page {
        padding: 40px 20px;
    }

    .form-container {
        padding: 30px 20px;
    }

    .cookie-banner {
        padding: 20px;
    }
}