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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #fdfcf9;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    color: #ffffff;
    padding: 20px;
    display: none;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

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

.cookie-content p {
    flex: 1;
    margin-right: 20px;
    font-size: 14px;
}

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

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

.btn-accept, .btn-reject {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

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

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

.btn-reject {
    background-color: #95a5a6;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #7f8c8d;
}

.ad-notice {
    background-color: #ecf0f1;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    color: #7f8c8d;
    border-bottom: 1px solid #bdc3c7;
}

.header-magazine {
    background-color: #ffffff;
    border-bottom: 3px solid #34495e;
}

.header-top {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    font-size: 28px;
    font-weight: 700;
    color: #2c5f2d;
    text-transform: lowercase;
    letter-spacing: 1px;
}

.main-nav {
    display: flex;
    gap: 25px;
}

.main-nav a {
    color: #34495e;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.main-nav a:hover {
    color: #2c5f2d;
}

.magazine-layout {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-section-wide {
    margin-bottom: 60px;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    text-align: center;
}

.hero-title {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 20px;
    max-width: 800px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 20px;
    color: #ecf0f1;
    max-width: 700px;
}

.intro-columns {
    display: flex;
    gap: 40px;
    padding: 40px 20px;
    margin-bottom: 60px;
}

.intro-left {
    flex: 2;
}

.intro-left h3 {
    font-size: 32px;
    color: #2c5f2d;
    margin-bottom: 20px;
}

.intro-left p {
    margin-bottom: 20px;
    font-size: 17px;
}

.intro-right {
    flex: 1;
}

.highlight-box {
    background-color: #e8f5e9;
    padding: 30px;
    border-left: 4px solid #2c5f2d;
}

.highlight-box h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c5f2d;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    font-size: 16px;
}

.feature-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-weight: bold;
}

.content-image-split {
    display: flex;
    gap: 0;
    margin-bottom: 80px;
    background-color: #ffffff;
}

.split-image {
    flex: 1;
    background-color: #ecf0f1;
}

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

.split-content {
    flex: 1;
    padding: 60px;
}

.split-content h3 {
    font-size: 30px;
    color: #34495e;
    margin-bottom: 25px;
}

.split-content p {
    margin-bottom: 18px;
    font-size: 16px;
}

.services-preview {
    padding: 60px 20px;
    margin-bottom: 60px;
}

.section-title-center {
    text-align: center;
    font-size: 36px;
    color: #2c5f2d;
    margin-bottom: 50px;
}

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

.service-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    flex: 1;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

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

.service-card.featured img {
    width: 50%;
    height: auto;
}

.service-card.featured .service-content {
    width: 50%;
}

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

.service-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h4 {
    font-size: 24px;
    color: #34495e;
    margin-bottom: 15px;
}

.service-content p {
    margin-bottom: 15px;
    flex: 1;
}

.price-tag {
    font-size: 26px;
    color: #2c5f2d;
    font-weight: bold;
    margin-bottom: 20px;
}

.service-select-btn {
    padding: 12px 24px;
    background-color: #2c5f2d;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.service-select-btn:hover {
    background-color: #1e4620;
}

.testimonial-flow {
    background-color: #f8f9fa;
    padding: 60px 20px;
    margin-bottom: 60px;
}

.testimonial-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial-item {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    background-color: #ffffff;
    border-left: 4px solid #2c5f2d;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.6;
}

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

.detailed-approach {
    padding: 60px 20px;
    margin-bottom: 60px;
}

.approach-header h3 {
    text-align: center;
    font-size: 34px;
    color: #34495e;
    margin-bottom: 50px;
}

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

.approach-column {
    flex: 1;
    padding: 30px;
    background-color: #ffffff;
    border-top: 3px solid #2c5f2d;
}

.approach-column h4 {
    font-size: 22px;
    color: #2c5f2d;
    margin-bottom: 15px;
}

.approach-column p {
    font-size: 15px;
    line-height: 1.7;
}

.form-section {
    background-color: #34495e;
    padding: 80px 20px;
    margin-bottom: 60px;
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
}

.form-wrapper h3 {
    font-size: 32px;
    color: #2c5f2d;
    margin-bottom: 15px;
}

.form-intro {
    margin-bottom: 30px;
    color: #7f8c8d;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid #bdc3c7;
    font-size: 15px;
    font-family: 'Arial', sans-serif;
}

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

.submit-btn {
    padding: 15px 40px;
    background-color: #2c5f2d;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 17px;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

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

.additional-services {
    padding: 60px 20px;
    margin-bottom: 60px;
}

.additional-services h3 {
    font-size: 34px;
    color: #2c5f2d;
    margin-bottom: 40px;
}

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

.additional-item {
    flex: 1;
    padding: 40px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
}

.additional-item h4 {
    font-size: 24px;
    color: #34495e;
    margin-bottom: 15px;
}

.additional-item p {
    margin-bottom: 15px;
}

.disclaimer-section {
    padding: 40px 20px;
    margin-bottom: 40px;
}

.disclaimer-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background-color: #fff3cd;
    border: 1px solid #ffc107;
}

.disclaimer-box h4 {
    font-size: 20px;
    color: #856404;
    margin-bottom: 15px;
}

.disclaimer-box p {
    font-size: 14px;
    color: #856404;
    line-height: 1.6;
}

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

.footer-columns {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

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

.footer-col p {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-col a {
    color: #3498db;
    text-decoration: none;
}

.footer-col a:hover {
    text-decoration: underline;
}

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

.page-header {
    text-align: center;
    padding: 60px 20px 40px;
    background-color: #f8f9fa;
}

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

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

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
    line-height: 1.8;
}

.legal-page h2 {
    font-size: 36px;
    color: #2c5f2d;
    margin-bottom: 30px;
}

.legal-page h3 {
    font-size: 24px;
    color: #34495e;
    margin-top: 40px;
    margin-bottom: 15px;
}

.legal-page h4 {
    font-size: 18px;
    color: #34495e;
    margin-top: 25px;
    margin-bottom: 10px;
}

.legal-page p {
    margin-bottom: 15px;
}

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

.legal-page li {
    margin-bottom: 10px;
}

.legal-page a {
    color: #2c5f2d;
    text-decoration: underline;
}

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

.contact-info-section h3 {
    font-size: 32px;
    color: #2c5f2d;
    margin-bottom: 40px;
}

.contact-detail {
    margin-bottom: 40px;
    padding: 30px;
    background-color: #f8f9fa;
    border-left: 4px solid #2c5f2d;
}

.contact-detail h4 {
    font-size: 20px;
    color: #34495e;
    margin-bottom: 15px;
}

.contact-detail p {
    margin-bottom: 10px;
    line-height: 1.7;
}

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

.response-info {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

.response-info h3 {
    font-size: 32px;
    color: #2c5f2d;
    margin-bottom: 40px;
    text-align: center;
}

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

.response-item {
    flex: 1;
    padding: 30px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
}

.response-item h4 {
    font-size: 20px;
    color: #2c5f2d;
    margin-bottom: 15px;
}

.response-item p {
    font-size: 15px;
    line-height: 1.7;
}

.thanks-section {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.thanks-content {
    flex: 1.5;
}

.thanks-content h2 {
    font-size: 36px;
    color: #2c5f2d;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.7;
}

.thanks-details {
    margin-bottom: 30px;
}

.submission-info {
    background-color: #e8f5e9;
    padding: 20px;
    border-left: 4px solid #2c5f2d;
    font-size: 16px;
}

.next-steps {
    margin-bottom: 40px;
}

.next-steps h3 {
    font-size: 24px;
    color: #34495e;
    margin-bottom: 20px;
}

.steps-list {
    margin-left: 25px;
    line-height: 1.8;
}

.steps-list li {
    margin-bottom: 15px;
    padding-left: 10px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
}

.btn-primary, .btn-secondary {
    padding: 14px 28px;
    text-decoration: none;
    font-size: 16px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background-color: #2c5f2d;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #1e4620;
}

.btn-secondary {
    background-color: #95a5a6;
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: #7f8c8d;
}

.thanks-image {
    flex: 1;
}

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

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

.service-detail-card {
    display: flex;
    margin-bottom: 80px;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    overflow: hidden;
}

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

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

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

.service-detail-content {
    flex: 1;
    padding: 50px;
}

.service-detail-content h3 {
    font-size: 28px;
    color: #34495e;
    margin-bottom: 20px;
}

.service-price {
    font-size: 32px;
    color: #2c5f2d;
    font-weight: bold;
    margin-bottom: 20px;
}

.service-description {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.service-detail-content h4 {
    font-size: 20px;
    color: #34495e;
    margin-top: 25px;
    margin-bottom: 15px;
}

.service-includes {
    list-style: none;
    margin-bottom: 25px;
}

.service-includes li {
    padding: 8px 0 8px 25px;
    position: relative;
    font-size: 15px;
    line-height: 1.6;
}

.service-includes li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-size: 20px;
}

.service-duration {
    font-size: 14px;
    color: #7f8c8d;
    font-style: italic;
    margin-bottom: 30px;
}

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

.cta-box {
    background-color: #2c5f2d;
    padding: 60px;
    text-align: center;
    color: #ffffff;
}

.cta-box h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.7;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: #ffffff;
    color: #2c5f2d;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #ecf0f1;
}

.about-intro {
    padding: 60px 20px;
    background-color: #ffffff;
}

.about-content-wide {
    max-width: 900px;
    margin: 0 auto;
}

.about-content-wide p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.story-section {
    display: flex;
    gap: 50px;
    padding: 60px 20px;
    margin-bottom: 60px;
    background-color: #f8f9fa;
}

.story-image {
    flex: 1;
}

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

.story-text {
    flex: 1;
    padding: 20px;
}

.story-text h3 {
    font-size: 30px;
    color: #2c5f2d;
    margin-bottom: 25px;
}

.story-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.philosophy-section {
    padding: 60px 20px;
    margin-bottom: 60px;
}

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

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

.philosophy-item {
    flex: 1;
    padding: 40px;
    background-color: #ffffff;
    border-top: 4px solid #2c5f2d;
}

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

.philosophy-item p {
    font-size: 15px;
    line-height: 1.7;
}

.team-approach {
    display: flex;
    gap: 50px;
    padding: 60px 20px;
    margin-bottom: 60px;
}

.approach-text {
    flex: 1;
}

.approach-text h3 {
    font-size: 30px;
    color: #2c5f2d;
    margin-bottom: 25px;
}

.approach-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.approach-image {
    flex: 1;
    background-color: #ecf0f1;
}

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

.values-section {
    padding: 60px 20px;
    background-color: #f8f9fa;
    margin-bottom: 60px;
}

.values-section h3 {
    text-align: center;
    font-size: 34px;
    color: #2c5f2d;
    margin-bottom: 40px;
}

.values-content {
    max-width: 900px;
    margin: 0 auto;
}

.values-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 25px;
}

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

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

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

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

@media (max-width: 768px) {
    .intro-columns {
        flex-direction: column;
    }

    .content-image-split {
        flex-direction: column;
    }

    .service-card.featured {
        flex-direction: column;
    }

    .service-card.featured img {
        width: 100%;
    }

    .service-card.featured .service-content {
        width: 100%;
    }

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

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

    .footer-columns {
        flex-direction: column;
        gap: 30px;
    }

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

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

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

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

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

    .story-section {
        flex-direction: column;
    }

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

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

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