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

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

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

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

.navbar {
    background-color: #1a1a1a;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.nav-brand {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
}

.nav-ad-label {
    font-size: 11px;
    color: #999;
    background-color: #333;
    padding: 4px 10px;
    border-radius: 3px;
    margin-left: 15px;
}

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

.nav-menu li a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-menu li a:hover {
    color: #ffffff;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.hero-section {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #4a4a4a;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 22px;
    font-weight: 300;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}

.intro-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.magazine-layout {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.main-column {
    flex: 2;
}

.sidebar-column {
    flex: 1;
}

.magazine-layout-reverse {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.magazine-layout-reverse .main-column {
    flex: 2;
}

.magazine-layout-reverse .sidebar-column {
    flex: 1;
}

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

.intro-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #3c3c3c;
}

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

.highlight-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.highlight-box p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.cta-link {
    color: #2c5f2d;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 2px solid #2c5f2d;
    transition: all 0.3s;
}

.cta-link:hover {
    color: #1a3d1b;
    border-bottom-color: #1a3d1b;
}

.feature-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

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

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

.column-image img {
    width: 100%;
    height: auto;
    display: block;
}

.column-content {
    flex: 1;
}

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

.column-content p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #3c3c3c;
}

.story-section {
    padding: 80px 0;
    background-color: #ffffff;
}

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

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

.story-card {
    flex: 1;
    min-width: 280px;
    background-color: #fafafa;
}

.story-card img {
    width: 100%;
    height: 250px;
    display: block;
    background-color: #ccc;
}

.story-card h3 {
    font-size: 22px;
    margin: 20px 20px 15px;
    color: #1a1a1a;
}

.story-card p {
    font-size: 16px;
    margin: 0 20px 20px;
    color: #4a4a4a;
}

.services-preview {
    padding: 80px 0;
    background-color: #f0f0eb;
}

.service-highlights {
    margin-top: 40px;
}

.service-item {
    background-color: #ffffff;
    padding: 25px;
    margin-bottom: 25px;
    border-left: 3px solid #2c5f2d;
}

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

.service-item p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #4a4a4a;
}

.price-tag {
    display: inline-block;
    font-size: 20px;
    font-weight: bold;
    color: #2c5f2d;
}

.image-stack {
    background-color: #ddd;
}

.image-stack img {
    width: 100%;
    height: auto;
    display: block;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #2c5f2d;
    color: #ffffff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
    margin-top: 20px;
}

.btn-primary:hover {
    background-color: #1a3d1b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 95, 45, 0.3);
}

.form-section {
    padding: 80px 0;
    background-color: #ffffff;
}

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

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

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 20px;
}

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 15px;
    background-color: #2c5f2d;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background-color: #1a3d1b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 95, 45, 0.3);
}

.testimonial-section {
    padding: 80px 0;
    background-color: #f5f5f0;
}

.testimonial-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

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

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

.testimonial p {
    font-size: 17px;
    font-style: italic;
    margin-bottom: 20px;
    color: #3c3c3c;
}

.testimonial cite {
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    color: #2c5f2d;
}

.footer {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 60px 0 20px;
}

.footer-columns {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

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

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

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

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

.footer-column ul li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    background-color: #0f0f0f;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 4px;
}

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

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

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

.page-header {
    padding: 60px 0 40px;
    background-color: #2c5f2d;
    color: #ffffff;
}

.page-header h1 {
    font-size: 46px;
    text-align: center;
}

.page-intro {
    font-size: 20px;
    text-align: center;
    margin-top: 15px;
    color: #e0e0e0;
}

.about-intro {
    padding: 80px 0;
    background-color: #ffffff;
}

.stats-box {
    background-color: #2c5f2d;
    padding: 35px;
    color: #ffffff;
}

.stat-item {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
}

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

.stat-number {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 15px;
    color: #d0d0d0;
}

.mission-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.team-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.team-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

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

.approach-card {
    flex: 1;
    min-width: 250px;
    background-color: #f5f5f0;
    padding: 30px;
}

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

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

.history-section {
    padding: 80px 0;
    background-color: #f0f0eb;
}

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

.awards-list li {
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    color: #2c5f2d;
    font-weight: 600;
}

.awards-list li:last-child {
    border-bottom: none;
}

.values-section {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.values-content p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #3c3c3c;
    line-height: 1.8;
}

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

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-card {
    display: flex;
    gap: 40px;
    background-color: #fafafa;
    padding: 30px;
    border-left: 5px solid #2c5f2d;
}

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

.service-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-content {
    flex: 1;
}

.service-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #3c3c3c;
}

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

.service-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #4a4a4a;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-weight: bold;
}

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-top: 20px;
}

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

.price-note {
    font-size: 15px;
    color: #666;
}

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

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

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

.additional-info {
    padding: 60px 0;
    background-color: #ffffff;
}

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

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

.info-column h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.info-column p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.6;
}

.contact-section {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.contact-info {
    flex: 1;
}

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

.contact-info p {
    font-size: 17px;
    margin-bottom: 30px;
    color: #3c3c3c;
}

.contact-details {
    margin-bottom: 40px;
}

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

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

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

.email-text {
    font-weight: 600;
    color: #2c2c2c;
}

.response-info {
    background-color: #f5f5f0;
    padding: 25px;
    border-left: 4px solid #2c5f2d;
}

.response-info h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.response-info p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.6;
}

.contact-image {
    flex: 1;
    background-color: #ddd;
}

.contact-image img {
    width: 100%;
    height: auto;
    display: block;
}

.location-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

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

.location-section p {
    font-size: 17px;
    margin-bottom: 30px;
    color: #3c3c3c;
}

.location-details {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.location-item {
    flex: 1;
    min-width: 250px;
}

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

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

.visit-section {
    padding: 60px 0;
    background-color: #ffffff;
}

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

.visit-section p {
    font-size: 17px;
    color: #3c3c3c;
    line-height: 1.7;
}

.thanks-section {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.thanks-content {
    text-align: center;
}

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

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

.thanks-message {
    font-size: 20px;
    margin-bottom: 40px;
    color: #4a4a4a;
}

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

.selected-service {
    font-size: 18px;
    color: #2c5f2d;
}

.next-steps {
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: left;
}

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

.steps-list {
    list-style: none;
    counter-reset: step-counter;
}

.steps-list li {
    counter-increment: step-counter;
    margin-bottom: 25px;
    padding-left: 50px;
    position: relative;
}

.steps-list li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 35px;
    height: 35px;
    background-color: #2c5f2d;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

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

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #ffffff;
    color: #2c5f2d;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    border: 2px solid #2c5f2d;
    border-radius: 4px;
    transition: all 0.3s;
}

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

.contact-reminder {
    background-color: #f5f5f0;
    padding: 20px;
    border-radius: 4px;
}

.contact-reminder p {
    font-size: 16px;
    color: #4a4a4a;
}

.related-content {
    padding: 80px 0;
    background-color: #ffffff;
}

.related-content h2 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
    color: #1a1a1a;
}

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

.related-card {
    flex: 1;
    min-width: 250px;
    background-color: #fafafa;
    padding: 30px;
    border-top: 4px solid #2c5f2d;
}

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

.related-card p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.legal-page {
    padding: 60px 0;
    background-color: #ffffff;
}

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

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

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.legal-page h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 12px;
    color: #3c3c3c;
}

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

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

.legal-page ul li {
    margin-bottom: 10px;
    color: #4a4a4a;
    line-height: 1.6;
}

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

.legal-page a:hover {
    color: #1a3d1b;
}

.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: 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.cookie-table tbody tr:hover {
    background-color: #f9f9f9;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
}

.cookie-banner.hidden {
    display: none;
}

.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 {
    font-size: 15px;
    margin: 0;
    flex: 1;
}

.cookie-content a {
    color: #66d966;
    text-decoration: underline;
}

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

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

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

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

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

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

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #1a1a1a;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }

    .nav-menu.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

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

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

    .magazine-layout,
    .magazine-layout-reverse,
    .two-column-layout,
    .contact-layout {
        flex-direction: column;
    }

    .story-grid,
    .testimonial-grid,
    .footer-columns {
        flex-direction: column;
    }

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

    .service-image {
        flex: 0 0 auto;
        width: 100%;
    }

    .form-row {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}