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

body {
    font-family: 'Georgia', 'Palatino', 'Times New Roman', serif;
    line-height: 1.65;
    color: #1a1a1a;
    background-color: #fefefe;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 22px 30px;
    z-index: 1000;
    display: none;
    box-shadow: 0 -3px 15px rgba(0,0,0,0.2);
}

.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;
    min-width: 320px;
    font-size: 15px;
    line-height: 1.6;
}

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

.btn-accept,
.btn-reject {
    padding: 11px 28px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: inherit;
}

.btn-accept:hover,
.btn-reject:hover {
    transform: translateY(-1px);
}

.btn-accept {
    background-color: #4a7c59;
    color: #ffffff;
}

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

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

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

.navigation {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

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

.nav-brand {
    font-size: 27px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.6px;
}

.nav-links {
    display: flex;
    gap: 38px;
    flex: 1;
    justify-content: center;
}

.nav-links a {
    text-decoration: none;
    color: #2a2a2a;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #4a7c59;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #4a7c59;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.ad-disclosure {
    font-size: 11px;
    color: #666;
    background-color: #f5f5f5;
    padding: 6px 14px;
    border-radius: 4px;
    white-space: nowrap;
}

.hero-magazine {
    background-color: #fafafa;
    padding: 60px 0;
}

.hero-content-split {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 35px;
    display: flex;
    gap: 70px;
    align-items: center;
}

.hero-text-column {
    flex: 1;
    max-width: 650px;
}

.hero-text-column h1 {
    font-size: 54px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.hero-lead {
    font-size: 21px;
    line-height: 1.6;
    color: #3a3a3a;
}

.hero-image-column {
    flex: 1;
    background-color: #e8e8e8;
}

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

.intro-statement {
    padding: 80px 0;
    background-color: #2a2a2a;
    color: #ffffff;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 35px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 35px;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 35px;
}

.large-text {
    font-size: 26px;
    line-height: 1.6;
    text-align: center;
}

.magazine-grid {
    padding: 90px 0;
    background-color: #ffffff;
}

.grid-layout {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 35px;
    display: flex;
    gap: 50px;
}

.grid-main {
    flex: 2;
}

.grid-main img {
    width: 100%;
    height: auto;
    margin-bottom: 35px;
    background-color: #e8e8e8;
    object-fit: cover;
}

.article-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    line-height: 1.3;
    color: #1a1a1a;
}

.article-content p {
    font-size: 17px;
    line-height: 1.75;
    margin-bottom: 20px;
    color: #2a2a2a;
}

.grid-sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-card {
    background-color: #f8f8f8;
    padding: 35px;
    border-left: 4px solid #4a7c59;
}

.sidebar-card h3 {
    font-size: 22px;
    margin-bottom: 18px;
    color: #1a1a1a;
}

.sidebar-card p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.sidebar-card.dark {
    padding: 0;
    background-color: #e8e8e8;
    border: none;
}

.sidebar-card.dark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-link {
    display: inline-block;
    color: #4a7c59;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #4a7c59;
    transition: all 0.3s ease;
}

.cta-link:hover {
    color: #3d6549;
    border-bottom-color: #3d6549;
}

.narrative-flow {
    padding: 90px 0;
    background-color: #fafafa;
}

.two-column-offset {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.column-left {
    flex: 1;
}

.column-left h2 {
    font-size: 36px;
    margin-bottom: 28px;
    line-height: 1.3;
    color: #1a1a1a;
}

.column-left p {
    font-size: 17px;
    line-height: 1.75;
    margin-bottom: 22px;
    color: #2a2a2a;
}

.column-right {
    flex: 1;
    background-color: #e8e8e8;
}

.column-right img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.services-preview {
    padding: 90px 0;
    background-color: #ffffff;
}

.section-title {
    font-size: 44px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
    line-height: 1.3;
}

.services-cards {
    display: flex;
    gap: 35px;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    background-color: #fafafa;
    border: 1px solid #e5e5e5;
    flex: 0 1 calc(25% - 27px);
    min-width: 280px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

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

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

.service-card h3 {
    font-size: 22px;
    margin: 28px 25px 15px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 15px;
    line-height: 1.65;
    margin: 0 25px 20px;
    color: #4a4a4a;
    flex: 1;
}

.price-tag {
    font-size: 26px;
    font-weight: 700;
    color: #4a7c59;
    margin: 0 25px 20px;
}

.btn-select {
    margin: 0 25px 25px;
    padding: 13px 0;
    background-color: #2a2a2a;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: inherit;
}

.btn-select:hover {
    background-color: #4a7c59;
}

.testimonial-inline {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.testimonial-inline blockquote {
    border-left: 5px solid #4a7c59;
    padding-left: 40px;
    font-style: italic;
}

.testimonial-inline p {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #2a2a2a;
}

.testimonial-inline cite {
    font-size: 16px;
    font-style: normal;
    color: #666;
}

.modern-cinema {
    padding: 90px 0;
    background-color: #ffffff;
}

.split-content-reverse {
    display: flex;
    flex-direction: row-reverse;
    gap: 60px;
    align-items: center;
}

.content-image {
    flex: 1;
    background-color: #e8e8e8;
}

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

.content-text {
    flex: 1;
}

.content-text h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a1a1a;
    line-height: 1.3;
}

.content-text p {
    font-size: 17px;
    line-height: 1.75;
    margin-bottom: 20px;
    color: #2a2a2a;
}

.cta-inline {
    display: inline-block;
    margin-top: 15px;
    color: #4a7c59;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-bottom: 2px solid #4a7c59;
    transition: all 0.3s ease;
}

.cta-inline:hover {
    color: #3d6549;
    border-bottom-color: #3d6549;
}

.contact-form-section {
    padding: 90px 0;
    background-color: #fafafa;
}

.contact-form-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.form-intro {
    text-align: center;
    font-size: 17px;
    margin-bottom: 50px;
    color: #4a4a4a;
}

.contact-form {
    max-width: 650px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 45px;
    border: 1px solid #e5e5e5;
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #2a2a2a;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    font-size: 15px;
    border: 1px solid #d5d5d5;
    background-color: #fafafa;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a7c59;
    background-color: #ffffff;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #4a7c59;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: inherit;
}

.btn-submit:hover {
    background-color: #3d6549;
}

.disclaimer-section {
    padding: 50px 0;
    background-color: #f0f0f0;
}

.disclaimer {
    font-size: 13px;
    line-height: 1.7;
    color: #555;
    text-align: center;
}

.footer {
    background-color: #1a1a1a;
    color: #b5b5b5;
    padding: 70px 0 30px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 35px;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

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

.footer-column h4 {
    font-size: 19px;
    margin-bottom: 22px;
    color: #ffffff;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 12px;
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #b5b5b5;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 25px 35px 0;
    border-top: 1px solid #333;
    text-align: center;
}

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

.about-page,
.services-page,
.contact-page,
.thanks-page {
    min-height: 60vh;
}

.about-hero {
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.about-hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 20px;
    color: #d5d5d5;
}

.about-story {
    padding: 90px 0;
    background-color: #ffffff;
}

.story-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.story-text p {
    font-size: 17px;
    line-height: 1.75;
    margin-bottom: 20px;
    color: #2a2a2a;
}

.story-image {
    flex: 1;
    background-color: #e8e8e8;
}

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

.about-approach {
    padding: 90px 0;
    background-color: #fafafa;
}

.about-approach h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.approach-grid {
    display: flex;
    gap: 35px;
    flex-wrap: wrap;
}

.approach-item {
    flex: 1;
    min-width: 250px;
    background-color: #ffffff;
    padding: 40px;
    border-top: 4px solid #4a7c59;
}

.approach-item h3 {
    font-size: 24px;
    margin-bottom: 18px;
    color: #1a1a1a;
}

.approach-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
}

.about-team {
    padding: 90px 0;
    background-color: #ffffff;
}

.about-team h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.about-team p {
    font-size: 17px;
    line-height: 1.75;
    margin-bottom: 20px;
    color: #2a2a2a;
}

.about-values {
    padding: 90px 0;
    background-color: #f8f8f8;
}

.values-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.values-image {
    flex: 1;
    background-color: #e8e8e8;
}

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

.values-content {
    flex: 1;
}

.values-content h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.values-list {
    list-style: none;
    margin-bottom: 35px;
}

.values-list li {
    padding: 12px 0 12px 30px;
    font-size: 16px;
    line-height: 1.7;
    color: #2a2a2a;
    position: relative;
}

.values-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #4a7c59;
    font-weight: 700;
}

.cta-button {
    display: inline-block;
    padding: 15px 35px;
    background-color: #4a7c59;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.services-intro {
    padding: 80px 0;
    background-color: #fafafa;
    text-align: center;
}

.services-intro h1 {
    font-size: 50px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.page-subtitle {
    font-size: 19px;
    color: #4a4a4a;
    max-width: 800px;
    margin: 0 auto;
}

.services-detailed {
    padding: 60px 0;
    background-color: #ffffff;
}

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

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

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

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.75;
    margin-bottom: 20px;
    color: #2a2a2a;
}

.service-features {
    margin: 35px 0;
}

.service-features h3 {
    font-size: 22px;
    margin-bottom: 18px;
    color: #1a1a1a;
}

.service-features ul {
    list-style: none;
}

.service-features li {
    padding: 10px 0 10px 25px;
    font-size: 15px;
    line-height: 1.65;
    color: #4a4a4a;
    position: relative;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4a7c59;
    font-weight: 700;
}

.pricing-box {
    background-color: #f8f8f8;
    padding: 30px;
    margin-top: 30px;
    border-left: 4px solid #4a7c59;
}

.pricing-box .price {
    font-size: 40px;
    font-weight: 700;
    color: #4a7c59;
    margin-bottom: 12px;
}

.price-description {
    font-size: 15px;
    color: #666;
    margin-bottom: 25px;
}

.btn-select-service {
    padding: 14px 32px;
    background-color: #2a2a2a;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: inherit;
}

.btn-select-service:hover {
    background-color: #4a7c59;
}

.service-detail-image {
    flex: 1;
    background-color: #e8e8e8;
}

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

.cta-section {
    padding: 80px 0;
    background-color: #f8f8f8;
    text-align: center;
}

.cta-section h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #4a4a4a;
}

.cta-button-large {
    display: inline-block;
    padding: 18px 45px;
    background-color: #4a7c59;
    color: #ffffff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button-large:hover {
    background-color: #3d6549;
    transform: translateY(-2px);
}

.contact-header {
    padding: 80px 0;
    background-color: #2a2a2a;
    color: #ffffff;
    text-align: center;
}

.contact-header h1 {
    font-size: 50px;
    margin-bottom: 18px;
}

.contact-content {
    padding: 90px 0;
    background-color: #ffffff;
}

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.contact-block {
    margin: 35px 0;
    padding: 25px;
    background-color: #fafafa;
    border-left: 4px solid #4a7c59;
}

.contact-block h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.contact-block p {
    font-size: 16px;
    line-height: 1.75;
    color: #2a2a2a;
}

.contact-note {
    margin-top: 40px;
    padding: 25px;
    background-color: #f0f0f0;
}

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

.contact-form-wrapper {
    flex: 1;
}

.contact-form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.location-info {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.location-info h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.location-info p {
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 15px;
    color: #2a2a2a;
}

.thanks-content {
    padding: 100px 0;
    background-color: #ffffff;
}

.thanks-message {
    background-color: #fafafa;
    padding: 60px;
    border: 1px solid #e5e5e5;
    text-align: center;
}

.thanks-message h1 {
    font-size: 44px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-subtitle {
    font-size: 20px;
    color: #4a7c59;
    margin-bottom: 35px;
}

.thanks-details {
    margin: 40px 0;
}

.thanks-details p {
    font-size: 17px;
    line-height: 1.75;
    margin-bottom: 18px;
    color: #2a2a2a;
}

.service-confirmation {
    font-weight: 600;
    color: #4a7c59;
}

.next-steps {
    margin: 50px 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.next-steps ul {
    list-style: none;
}

.next-steps li {
    padding: 12px 0 12px 30px;
    font-size: 16px;
    line-height: 1.7;
    color: #2a2a2a;
    position: relative;
}

.next-steps li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #4a7c59;
    font-weight: 700;
}

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

.btn-primary,
.btn-secondary {
    padding: 15px 35px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #4a7c59;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #3d6549;
}

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

.btn-secondary:hover {
    background-color: #4a7c59;
}

.additional-info {
    margin-top: 60px;
    padding: 40px;
    background-color: #f8f8f8;
    border-left: 4px solid #4a7c59;
}

.additional-info h3 {
    font-size: 24px;
    margin-bottom: 18px;
    color: #1a1a1a;
}

.additional-info p {
    font-size: 16px;
    line-height: 1.75;
    color: #2a2a2a;
}

.additional-info a {
    color: #4a7c59;
    text-decoration: underline;
}

.additional-info a:hover {
    color: #3d6549;
}

@media (max-width: 1024px) {
    .hero-content-split,
    .grid-layout,
    .two-column-offset,
    .split-content-reverse,
    .story-layout,
    .values-split,
    .service-detail,
    .service-detail.reverse,
    .contact-layout {
        flex-direction: column;
    }

    .services-cards {
        justify-content: center;
    }

    .service-card {
        flex: 0 1 calc(50% - 18px);
    }
}

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

    .nav-links {
        gap: 22px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-text-column h1 {
        font-size: 38px;
    }

    .large-text {
        font-size: 20px;
    }

    .section-title {
        font-size: 34px;
    }

    .service-card {
        flex: 1 1 100%;
    }

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

    .thanks-actions {
        flex-direction: column;
    }

    .footer-container {
        flex-direction: column;
    }
}