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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

.site-header-main {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navigation-container-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-section-brand h1 {
    font-size: 1.8rem;
    font-weight: 700;
}

.brand-link-home {
    color: #2c5f2d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.brand-link-home:hover {
    color: #97bf0d;
}

.menu-list-primary {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.menu-list-primary a {
    color: #555;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

.menu-list-primary a:hover,
.menu-list-primary a.active {
    color: #2c5f2d;
    border-bottom-color: #2c5f2d;
}

.hero-banner-main {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-content-wrapper {
    position: relative;
    height: 100%;
}

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

.hero-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    width: 100%;
    padding: 0 20px;
}

.hero-title-big {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero-subtitle-text {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.cta-button-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2c5f2d;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(44, 95, 45, 0.3);
}

.cta-button-primary:hover {
    background-color: #1e4620;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 95, 45, 0.4);
}

.introduction-section-home,
.features-showcase-section,
.highlights-content-section,
.lifestyle-tips-section,
.gallery-showcase-section,
.testimonials-section-user,
.cta-subscribe-section {
    padding: 4rem 0;
}

.section-heading-large {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c5f2d;
}

.intro-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.intro-paragraph-first,
.intro-paragraph-second,
.intro-paragraph-third {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.intro-image-side {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.features-grid-four {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature-card-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.feature-image-card {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.feature-card-item h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.3rem;
    color: #2c5f2d;
}

.feature-description-text {
    padding: 0 1.5rem 1rem;
    color: #666;
    font-size: 0.95rem;
}

.feature-link-more {
    display: block;
    padding: 0 1.5rem 1.5rem;
    color: #2c5f2d;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.feature-link-more:hover {
    color: #1e4620;
}

.highlights-grid-three {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.highlight-article-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.article-image-thumb {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.article-content-box {
    padding: 1.5rem;
}

.article-category-tag {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background-color: #e8f5e9;
    color: #2c5f2d;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.article-title-main {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.article-excerpt-text {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.7;
}

.article-read-link {
    color: #2c5f2d;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.article-read-link:hover {
    color: #1e4620;
}

.tips-grid-two {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.tip-item-box {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
}

.tip-image-small {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.tip-title-head {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c5f2d;
}

.tip-content-para {
    color: #555;
    line-height: 1.8;
}

.gallery-grid-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-item-frame {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.gallery-image-full {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item-frame:hover .gallery-image-full {
    transform: scale(1.1);
}

.testimonials-grid-three {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card-box {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #2c5f2d;
}

.testimonial-quote-text {
    font-style: italic;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author-name {
    color: #2c5f2d;
    font-weight: 600;
}

.cta-subscribe-section {
    background: linear-gradient(135deg, #2c5f2d 0%, #4a7c59 100%);
    color: #fff;
}

.cta-box-center {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-heading-big {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #fff;
}

.cta-description-sub {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.subscribe-form-inline {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.email-input-field {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    max-width: 400px;
}

.submit-button-cta {
    padding: 1rem 2.5rem;
    background-color: #fff;
    color: #2c5f2d;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.site-footer-main {
    background-color: #1a1a1a;
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer-grid-layout {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-heading-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #fff;
}

.footer-text-desc {
    color: #aaa;
    line-height: 1.8;
}

.footer-links-list {
    list-style: none;
}

.footer-links-list li {
    margin-bottom: 0.5rem;
}

.footer-links-list a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links-list a:hover {
    color: #fff;
}

.footer-contact-text {
    color: #aaa;
    margin-bottom: 0.5rem;
}

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

.copyright-text-small {
    color: #888;
    font-size: 0.9rem;
}

.page-hero-banner {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-overlay-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    width: 100%;
}

.page-title-hero {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.page-subtitle-hero {
    font-size: 1.5rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.page-content-main {
    padding: 4rem 0;
}

.content-intro-section {
    margin-bottom: 4rem;
}

.content-heading-large {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c5f2d;
}

.content-intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.articles-grid-layout {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.article-card-full {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.article-featured-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.article-text-content {
    padding: 2rem;
}

.article-heading-main {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2c5f2d;
}

.article-body-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 1.5rem;
}

.health-tips-grid {
    margin-top: 4rem;
}

.tips-cards-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.tip-card-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #2c5f2d;
}

.tip-card-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c5f2d;
}

.tip-card-text {
    color: #555;
    line-height: 1.8;
}

.recipes-featured-section {
    margin-bottom: 4rem;
}

.recipe-main-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.recipe-hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.recipe-content-box {
    padding: 2rem;
}

.recipe-title-main {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c5f2d;
}

.recipe-meta-info {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e0e0e0;
}

.meta-item {
    color: #666;
    font-weight: 500;
}

.recipe-ingredients,
.recipe-steps,
.recipe-tips {
    margin-bottom: 2rem;
}

.ingredients-heading,
.steps-heading,
.tips-heading {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c5f2d;
}

.ingredients-list,
.steps-list {
    padding-left: 1.5rem;
}

.ingredients-list li,
.steps-list li {
    margin-bottom: 0.8rem;
    color: #555;
    line-height: 1.7;
}

.steps-list li {
    margin-bottom: 1.2rem;
}

.tips-text {
    color: #555;
    line-height: 1.8;
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
}

.cooking-techniques-section,
.seasonal-ingredients-section,
.kitchen-essentials-section {
    margin-top: 4rem;
}

.techniques-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.technique-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.technique-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.technique-title {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.2rem;
    color: #2c5f2d;
}

.technique-text {
    padding: 0 1.5rem 1.5rem;
    color: #555;
    line-height: 1.7;
}

.section-intro-text {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.seasons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.season-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
}

.season-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c5f2d;
}

.season-text {
    color: #555;
    line-height: 1.8;
}

.essentials-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.essential-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
}

.essential-name {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #2c5f2d;
}

.essential-desc {
    color: #555;
    line-height: 1.7;
}

.design-principles-section,
.room-guide-section,
.storage-solutions-section,
.decoration-ideas-section {
    margin-top: 4rem;
}

.principles-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.principle-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.principle-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.principle-title {
    padding: 2rem 2rem 1rem;
    font-size: 1.8rem;
    color: #2c5f2d;
}

.principle-text {
    padding: 0 2rem 1rem;
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
}

.room-guide-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.guide-content {
    padding: 1rem;
}

.guide-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c5f2d;
}

.guide-text {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.guide-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.storage-tips-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.storage-tip-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #2c5f2d;
}

.storage-tip-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c5f2d;
}

.storage-tip-text {
    color: #555;
    line-height: 1.8;
}

.decoration-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.decoration-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
}

.decoration-name {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c5f2d;
}

.decoration-desc {
    color: #555;
    line-height: 1.8;
}

.fashion-basics-section,
.style-guide-section,
.occasion-dressing-section,
.wardrobe-essentials-section,
.fashion-tips-section {
    margin-top: 4rem;
}

.basics-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.basic-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.basic-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.basic-title {
    padding: 2rem 2rem 1rem;
    font-size: 1.8rem;
    color: #2c5f2d;
}

.basic-text {
    padding: 0 2rem 1rem;
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
}

.styles-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.style-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
}

.style-name {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c5f2d;
}

.style-desc {
    color: #555;
    line-height: 1.8;
}

.occasions-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.occasion-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

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

.occasion-content {
    padding: 2rem;
}

.occasion-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c5f2d;
}

.occasion-text {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.essentials-checklist {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.essential-category {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
}

.category-title {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #2c5f2d;
    border-bottom: 2px solid #2c5f2d;
    padding-bottom: 0.5rem;
}

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

.items-list li {
    padding: 0.5rem 0;
    color: #555;
    line-height: 1.7;
    border-bottom: 1px solid #e0e0e0;
}

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

.tips-collection {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.tip-box {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #2c5f2d;
}

.tip-heading {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c5f2d;
}

.tip-content {
    color: #555;
    line-height: 1.8;
}

.featured-destination-section,
.travel-planning-section,
.travel-tips-section,
.packing-list-section,
.seasonal-travel-section {
    margin-top: 4rem;
}

.destination-feature {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.destination-hero-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.destination-content {
    padding: 2rem;
}

.destination-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c5f2d;
}

.destination-intro {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.destination-detail {
    margin-bottom: 2.5rem;
}

.detail-heading {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c5f2d;
}

.detail-text {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.planning-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.planning-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.planning-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.planning-title {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.3rem;
    color: #2c5f2d;
}

.planning-text {
    padding: 0 1.5rem 1.5rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.tips-comprehensive {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.tip-category {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
}

.category-heading {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #2c5f2d;
}

.tips-listing {
    padding-left: 1.5rem;
}

.tips-listing li {
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.7;
}

.packing-checklist {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.checklist-column {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
}

.checklist-title {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #2c5f2d;
    border-bottom: 2px solid #2c5f2d;
    padding-bottom: 0.5rem;
}

.checklist-items {
    list-style: none;
}

.checklist-items li {
    padding: 0.5rem 0;
    color: #555;
    line-height: 1.7;
    border-bottom: 1px solid #e0e0e0;
}

.checklist-items li:last-child {
    border-bottom: none;
}

.seasonal-recommendations {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.season-recommend {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
}

.season-head {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c5f2d;
}

.season-desc {
    color: #555;
    line-height: 1.8;
}

.contact-intro-section {
    margin-bottom: 4rem;
}

.contact-intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.contact-methods-section,
.contact-form-section,
.cooperation-section,
.faq-section,
.social-media-section,
.map-section {
    margin-top: 4rem;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.method-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.method-icon {
    color: #2c5f2d;
    margin-bottom: 1rem;
}

.method-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c5f2d;
}

.method-info {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.method-desc {
    color: #666;
}

.form-intro-text {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-form-main {
    max-width: 800px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 12px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.form-label {
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 600;
}

.form-input,
.form-select,
.form-textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
}

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

.form-group-full {
    margin-bottom: 1.5rem;
}

.form-submit-area {
    text-align: center;
}

.submit-button-main {
    padding: 1rem 3rem;
    background-color: #2c5f2d;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button-main:hover {
    background-color: #1e4620;
    transform: translateY(-2px);
}

.cooperation-content {
    max-width: 800px;
    margin: 0 auto;
}

.cooperation-text {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.cooperation-list {
    padding-left: 2rem;
    margin-bottom: 1.5rem;
}

.cooperation-list li {
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.7;
}

.faq-items {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.faq-question {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c5f2d;
}

.faq-answer {
    color: #555;
    line-height: 1.8;
}

.social-intro-text {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.social-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.social-link-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.social-icon-box {
    color: #2c5f2d;
    margin-bottom: 1rem;
}

.social-platform {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.social-handle {
    color: #666;
}

.map-placeholder {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.map-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.map-overlay-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 1.5rem;
}

.map-address,
.map-transport {
    margin-bottom: 0.5rem;
}

@media (max-width: 1024px) {
    .features-grid-four,
    .essentials-checklist,
    .packing-checklist,
    .social-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .highlights-grid-three,
    .testimonials-grid-three,
    .techniques-grid,
    .planning-grid,
    .methods-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .navigation-container-top {
        flex-direction: column;
        gap: 1rem;
    }

    .menu-list-primary {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }

    .hero-title-big {
        font-size: 2rem;
    }

    .hero-subtitle-text {
        font-size: 1.2rem;
    }

    .intro-grid-layout,
    .tips-grid-two,
    .room-guide-item,
    .occasion-card,
    .form-row,
    .styles-layout,
    .tips-cards-layout,
    .storage-tips-grid,
    .decoration-grid,
    .seasons-grid,
    .essentials-list,
    .tips-collection,
    .tips-comprehensive,
    .seasonal-recommendations {
        grid-template-columns: 1fr;
    }

    .gallery-grid-masonry {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid-four,
    .essentials-checklist,
    .packing-checklist,
    .social-links-grid {
        grid-template-columns: 1fr;
    }

    .section-heading-large {
        font-size: 2rem;
    }

    .subscribe-form-inline {
        flex-direction: column;
    }

    .email-input-field {
        max-width: 100%;
    }

    .footer-grid-layout {
        grid-template-columns: 1fr;
    }
}

.homepage-unique-2025,
.health-page-unique-2025,
.food-page-unique-2025,
.home-page-unique-2025,
.fashion-page-unique-2025,
.travel-page-unique-2025,
.contact-page-unique-2025 {
    overflow-x: hidden;
}
