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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #fefefe;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

a {
    color: #2d5a3d;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1f3d2a;
}

.container-fluid {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-magazine {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.container-legal {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 30px;
}

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

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

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

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

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

.btn-cookie,
.btn-cookie-alt {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-cookie {
    background-color: #ffffff;
    color: #2d5a3d;
}

.btn-cookie:hover {
    background-color: #f0f0f0;
}

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

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

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo a {
    font-size: 26px;
    font-weight: 700;
    color: #2d5a3d;
    letter-spacing: -0.5px;
}

.ad-notice {
    font-size: 12px;
    color: #666;
    padding: 5px 12px;
    background-color: #f5f5f5;
    border-radius: 4px;
}

.ad-label {
    font-style: italic;
}

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

.main-nav a {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: #2d5a3d;
    border-bottom-color: #2d5a3d;
}

.hero-magazine {
    position: relative;
    height: 600px;
    background-color: #1a3d2a;
    margin-bottom: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-text-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    max-width: 900px;
    padding: 40px;
}

.hero-text-box h1 {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 700;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.5;
    color: #e8e8e8;
}

.intro-section {
    display: flex;
    gap: 60px;
    margin-bottom: 100px;
    align-items: center;
}

.intro-column-left {
    flex: 1;
}

.intro-column-right {
    flex: 1;
}

.intro-column-left h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 600;
}

.intro-column-left p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a4a;
}

.intro-column-right img {
    border-radius: 8px;
    width: 100%;
    background-color: #f0f0f0;
}

.services-preview {
    margin-bottom: 100px;
}

.section-heading {
    font-size: 42px;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 600;
    color: #1a1a1a;
}

.service-grid-magazine {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.service-card-mag {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

.service-card-mag h3 {
    font-size: 24px;
    margin: 25px 25px 15px;
    color: #1a1a1a;
    font-weight: 600;
}

.service-card-mag p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin: 0 25px 20px;
}

.price-tag {
    font-size: 20px;
    font-weight: 700;
    color: #2d5a3d;
    margin: 0 25px 20px;
}

.link-arrow {
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    color: #2d5a3d;
    margin: 0 25px 25px;
    transition: transform 0.3s ease;
}

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

.feature-block {
    margin-bottom: 100px;
}

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

.feature-text-wide {
    flex: 1.5;
}

.feature-image-narrow {
    flex: 1;
}

.feature-text-wide h2 {
    font-size: 36px;
    margin-bottom: 25px;
    font-weight: 600;
    color: #1a1a1a;
}

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

.feature-image-narrow img {
    border-radius: 8px;
    background-color: #f0f0f0;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #2d5a3d;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background-color: #1f3d2a;
    transform: translateY(-2px);
    color: #ffffff;
}

.testimonial-inline {
    background-color: #f9f9f9;
    padding: 60px 80px;
    margin-bottom: 100px;
    border-left: 4px solid #2d5a3d;
}

.testimonial-inline blockquote {
    border: none;
}

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

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

.cta-section-magazine {
    margin-bottom: 100px;
    background-color: #2d5a3d;
    padding: 70px 60px;
    border-radius: 12px;
    color: #ffffff;
}

.cta-content-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.cta-left {
    flex: 1;
}

.cta-left h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: #ffffff;
}

.cta-left p {
    font-size: 18px;
    color: #e8e8e8;
    line-height: 1.6;
}

.cta-right {
    flex: 0 0 auto;
}

.btn-large {
    display: inline-block;
    padding: 18px 40px;
    background-color: #ffffff;
    color: #2d5a3d;
    font-size: 17px;
    font-weight: 700;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    color: #2d5a3d;
}

.cta-note {
    font-size: 14px;
    color: #d0d0d0;
    margin-top: 12px;
}

.main-footer {
    background-color: #1a1a1a;
    color: #cccccc;
    padding: 60px 0 30px;
    margin-top: 100px;
}

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

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

.footer-col h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
    color: #b0b0b0;
}

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

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

.footer-col ul li a {
    color: #b0b0b0;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

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

.disclaimer {
    font-size: 13px;
    line-height: 1.6;
    color: #888;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-header-services {
    background-color: #f5f5f5;
    padding: 80px 0 60px;
    margin-bottom: 80px;
    text-align: center;
}

.page-header-services h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.page-intro {
    font-size: 20px;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-detailed {
    margin-bottom: 80px;
}

.service-detail-card {
    margin-bottom: 80px;
}

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

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

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

.service-detail-image img {
    border-radius: 8px;
    width: 100%;
    background-color: #f0f0f0;
}

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

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

.price-display {
    font-size: 24px;
    font-weight: 700;
    color: #2d5a3d;
    margin-bottom: 25px;
}

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

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    padding-left: 30px;
    margin-bottom: 12px;
    position: relative;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d5a3d;
    font-weight: 700;
    font-size: 18px;
}

.btn-select-service {
    padding: 14px 32px;
    background-color: #2d5a3d;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-select-service:hover {
    background-color: #1f3d2a;
    transform: translateY(-2px);
}

.form-section-magazine {
    background-color: #f9f9f9;
    padding: 60px;
    border-radius: 12px;
    margin-top: 80px;
    margin-bottom: 80px;
}

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

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 600;
}

.form-intro p {
    font-size: 17px;
    color: #555;
}

.service-form {
    max-width: 700px;
    margin: 0 auto;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 35px;
}

.btn-submit {
    padding: 14px 40px;
    background-color: #2d5a3d;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #1f3d2a;
}

.btn-cancel {
    padding: 14px 40px;
    background-color: #ffffff;
    color: #555;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    border: 1px solid #d0d0d0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-cancel:hover {
    background-color: #f5f5f5;
}

.page-header-about {
    position: relative;
    height: 500px;
    background-color: #1a3d2a;
    margin-bottom: 80px;
}

.page-header-about img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.page-header-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.page-header-overlay h1 {
    font-size: 60px;
    color: #ffffff;
    font-weight: 700;
}

.about-intro-split {
    display: flex;
    gap: 60px;
    margin-bottom: 100px;
}

.about-text-main {
    flex: 2;
}

.about-text-main h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 600;
}

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

.about-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-item {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid #2d5a3d;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: #2d5a3d;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #555;
    font-weight: 500;
}

.philosophy-section {
    margin-bottom: 100px;
}

.philosophy-section h2 {
    font-size: 42px;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 600;
    color: #1a1a1a;
}

.philosophy-columns {
    display: flex;
    gap: 40px;
}

.phil-col {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

.phil-col h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2d5a3d;
    font-weight: 600;
}

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

.team-section {
    margin-bottom: 100px;
}

.team-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
    color: #1a1a1a;
}

.team-intro {
    text-align: center;
    font-size: 18px;
    color: #555;
    margin-bottom: 60px;
}

.team-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.team-member {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.team-photo {
    width: 100%;
    height: 300px;
    background-color: #f5f5f5;
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 22px;
    margin: 25px 25px 10px;
    color: #1a1a1a;
    font-weight: 600;
}

.team-role {
    font-size: 15px;
    color: #2d5a3d;
    margin: 0 25px 15px;
    font-weight: 600;
}

.team-member p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin: 0 25px 25px;
}

.partners-section {
    background-color: #f9f9f9;
    padding: 60px;
    border-radius: 12px;
    margin-bottom: 100px;
}

.partners-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 600;
}

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

.cta-about {
    text-align: center;
    background-color: #2d5a3d;
    padding: 70px 60px;
    border-radius: 12px;
    color: #ffffff;
}

.cta-about h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #ffffff;
}

.cta-about p {
    font-size: 18px;
    color: #e8e8e8;
    margin-bottom: 35px;
    line-height: 1.6;
}

.contact-page {
    padding: 60px 0;
}

.contact-header {
    text-align: center;
    margin-bottom: 80px;
}

.contact-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

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

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

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

.contact-image-section {
    flex: 1;
}

.contact-image-section img {
    border-radius: 8px;
    width: 100%;
    background-color: #f0f0f0;
}

.contact-info-card {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 4px solid #2d5a3d;
}

.contact-info-card h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 600;
}

.contact-info-card p,
.contact-info-card address {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
    font-style: normal;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    color: #4a4a4a;
    padding-bottom: 12px;
    border-bottom: 1px solid #e0e0e0;
}

.hours-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.day {
    font-weight: 600;
}

.time {
    color: #2d5a3d;
    font-weight: 500;
}

.contact-email {
    font-size: 18px;
    color: #2d5a3d;
    font-weight: 600;
    margin-bottom: 15px;
}

.email-note {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.contact-additional {
    background-color: #f9f9f9;
    padding: 60px;
    border-radius: 12px;
}

.contact-additional h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 600;
}

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

.thanks-page {
    padding: 100px 0;
    min-height: 600px;
}

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

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

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.service-confirmation {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 40px;
    font-size: 17px;
    color: #2d5a3d;
    font-weight: 600;
}

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

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #ffffff;
    color: #2d5a3d;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    border: 2px solid #2d5a3d;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #f5f5f5;
    color: #2d5a3d;
}

.thanks-info {
    text-align: left;
    margin-top: 60px;
}

.thanks-info h2 {
    font-size: 28px;
    margin-bottom: 35px;
    color: #1a1a1a;
    font-weight: 600;
    text-align: center;
}

.next-steps {
    display: flex;
    gap: 40px;
}

.step {
    flex: 1;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #2d5a3d;
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

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

.legal-page {
    padding: 60px 0;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 700;
}

.last-updated {
    font-size: 15px;
    color: #888;
    margin-bottom: 50px;
}

.legal-section {
    margin-bottom: 50px;
}

.legal-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 600;
}

.legal-section h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2d5a3d;
    font-weight: 600;
}

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

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

.legal-section ul li {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 10px;
}

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

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

.cookie-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    color: #1a1a1a;
    border-bottom: 2px solid #2d5a3d;
}

.cookie-table td {
    padding: 15px;
    border-bottom: 1px solid #e0e0e0;
    color: #4a4a4a;
    font-size: 15px;
}

@media (max-width: 1024px) {
    .intro-section,
    .feature-content-reverse,
    .service-detail-layout,
    .cta-content-split,
    .about-intro-split,
    .contact-layout {
        flex-direction: column;
    }

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

    .philosophy-columns,
    .next-steps {
        flex-direction: column;
    }

    .hero-text-box h1 {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .main-nav ul {
        gap: 15px;
    }

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

    .service-grid-magazine {
        flex-direction: column;
    }

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

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

    .cookie-content {
        flex-direction: column;
    }
}