* {
    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-fluid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    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;
    min-width: 300px;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

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

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

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

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

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

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

.main-header {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid #f0f0f0;
}

.brand-mark {
    font-size: 24px;
    font-weight: 700;
    color: #2c2c2c;
    letter-spacing: -0.5px;
}

.ad-notice {
    font-size: 11px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 35px;
    padding: 15px 0;
}

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

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

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

.hero-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    align-items: center;
    padding: 0 25px;
}

.hero-text-col {
    flex: 1;
}

.hero-text-col h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 700;
    color: #1a1a1a;
}

.lead-text {
    font-size: 19px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 30px;
}

.cta-link {
    display: inline-block;
    padding: 14px 32px;
    background-color: #4a7c59;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.hero-image-col {
    flex: 1;
    background-color: #f5f5f5;
}

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

.intro-columns {
    padding: 70px 0;
    background-color: #f8f8f8;
}

.three-col-grid {
    display: flex;
    gap: 40px;
}

.col-item {
    flex: 1;
}

.col-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 600;
}

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

.services-showcase {
    padding: 80px 0;
    background-color: #fff;
}

.section-title {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
    color: #1a1a1a;
}

.service-layout-a {
    display: flex;
    gap: 45px;
    margin-bottom: 70px;
    align-items: flex-start;
}

.service-image-left {
    flex: 1;
    background-color: #f5f5f5;
}

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

.service-text-right {
    flex: 1;
}

.service-text-right h3,
.service-text-left h3 {
    font-size: 26px;
    margin-bottom: 18px;
    color: #1a1a1a;
    font-weight: 600;
}

.service-text-right p,
.service-text-left p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.price-tag {
    font-size: 20px;
    font-weight: 700;
    color: #4a7c59;
    margin-bottom: 18px;
}

.btn-select {
    padding: 12px 28px;
    background-color: #2c2c2c;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background-color: #4a7c59;
    transform: translateY(-2px);
}

.service-layout-b {
    display: flex;
    gap: 45px;
    margin-bottom: 70px;
    align-items: flex-start;
    flex-direction: row-reverse;
}

.service-text-left {
    flex: 1;
}

.service-image-right {
    flex: 1;
    background-color: #f5f5f5;
}

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

.service-full-width {
    margin-bottom: 70px;
}

.service-card-inline {
    display: flex;
    gap: 40px;
    background-color: #f8f8f8;
    padding: 35px;
}

.card-image {
    flex: 0 0 380px;
    background-color: #e8e8e8;
}

.card-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.card-content {
    flex: 1;
}

.card-content h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 600;
}

.card-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 18px;
}

.service-grid-two {
    display: flex;
    gap: 35px;
    margin-bottom: 70px;
}

.service-compact {
    flex: 1;
}

.service-compact img {
    width: 100%;
    height: 280px;
    display: block;
    object-fit: cover;
    margin-bottom: 20px;
    background-color: #f5f5f5;
}

.service-compact h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #1a1a1a;
    font-weight: 600;
}

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

.service-layout-c {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.service-wide-image {
    flex: 2;
    background-color: #f5f5f5;
}

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

.service-narrow-text {
    flex: 1;
}

.service-narrow-text h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 600;
}

.service-narrow-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 18px;
}

.why-choose-section {
    padding: 70px 0;
    background-color: #f8f8f8;
}

.why-choose-section h2 {
    font-size: 36px;
    margin-bottom: 45px;
    text-align: center;
    font-weight: 700;
    color: #1a1a1a;
}

.reasons-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.reason-item {
    padding: 25px;
    background-color: #fff;
    border-left: 4px solid #4a7c59;
}

.reason-item strong {
    display: block;
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

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

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

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

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

.main-form {
    background-color: #f8f8f8;
    padding: 40px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d0d0d0;
    font-size: 15px;
    font-family: inherit;
    background-color: #fff;
}

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

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

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

.main-footer {
    background-color: #2c2c2c;
    color: #d0d0d0;
    padding: 60px 0 30px;
}

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

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

.footer-col {
    flex: 1;
}

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

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

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

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

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

.footer-col a:hover {
    color: #4a7c59;
}

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

.footer-bottom p {
    font-size: 13px;
    color: #999;
    margin-bottom: 12px;
}

.disclaimer-text {
    font-size: 12px;
    color: #888;
    line-height: 1.5;
    max-width: 900px;
    margin: 15px auto 0;
}

.thanks-container {
    max-width: 700px;
    margin: 80px auto;
    padding: 50px;
    background-color: #fff;
    text-align: center;
    border: 2px solid #4a7c59;
}

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

.thanks-container p {
    font-size: 17px;
    color: #4a4a4a;
    line-height: 1.6;
    margin-bottom: 15px;
}

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

.contact-page-content {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 25px;
}

.contact-info-grid {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

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

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

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

.page-content {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 25px;
}

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

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

.page-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

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

.page-content ul,
.page-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

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

@media (max-width: 768px) {
    .hero-split,
    .service-layout-a,
    .service-layout-b,
    .service-card-inline,
    .service-grid-two,
    .service-layout-c,
    .three-col-grid,
    .footer-columns,
    .contact-info-grid {
        flex-direction: column;
    }

    .hero-text-col h1 {
        font-size: 32px;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 15px;
    }

    .card-image {
        flex: 0 0 auto;
    }
}