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

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #3e5a3d;
    background-color: #eef3ef;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 15px;
}

.container-fluid {
    width: 100%;
    padding: 0 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-md, .col-md-4, .col-md-8, .col-md-12, .col-lg-5, .col-lg-6, .col-lg-8, .col-xl-5, .col-12 {
    padding: 0 15px;
    flex: 1;
}

.col-12 { flex: 0 0 100%; max-width: 100%; }
.col-md-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
.col-md-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
.col-lg-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
.col-lg-6 { flex: 0 0 50%; max-width: 50%; }
.col-lg-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
.col-xl-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
.col-md-12 { flex: 0 0 100%; max-width: 100%; }

.d-flex { display: flex; }
.align-items-center { align-items: center; }
.align-items-stretch { align-items: stretch; }
.justify-content-center { justify-content: center; }
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.mr-1 { margin-right: 0.25rem; }
.mr-auto { margin-right: auto; }
.ml-auto { margin-left: auto; }
.ml-md-5 { margin-left: 3rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-4 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-md-4 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.pl-0 { padding-left: 0; }
.pl-3 { padding-left: 1rem; }
.p-3 { padding: 1rem; }

.HeaderTopSection {
    background: #588157;
    background: linear-gradient(135deg, #588157 0%, #3e5a3d 100%);
}

.ContactInfo {
    font-size: 15px;
    width: 100%;
    display: block;
}

.ContactInfo .icon {
    width: 42px;
    height: 42px;
    background: #eef3ef;
    border-radius: 50%;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.ContactInfo .icon span {
    color: #588157;
    font-size: 18px;
}

.ContactInfo .text {
    width: calc(100% - 42px);
    color: rgba(238, 243, 239, 0.9);
    padding-left: 17px;
    font-weight: 400;
}

.ContactInfo .d-block {
    width: 100%;
}

.ContactInfo .btn {
    width: 100% !important;
    border-radius: 27px;
    background: rgba(238, 243, 239, 0.15);
    border: 1px solid rgba(238, 243, 239, 0.3);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ContactInfo .btn:hover {
    background: #eef3ef;
    color: #588157;
    transform: translateY(-2px);
}

.navbar-brand {
    font-weight: 700;
    font-size: 26px;
    padding: 0;
    line-height: 1.2;
    color: #eef3ef !important;
    text-decoration: none;
}

.navbar-brand span {
    color: #eef3ef;
    font-size: 24px;
}

.NavBarMain {
    background: #3e5a3d !important;
    background: linear-gradient(45deg, #3e5a3d 0%, #588157 100%);
    z-index: 3;
    padding: 0;
    box-shadow: 0 4px 12px rgba(62, 90, 61, 0.15);
}

.NavBarMain .navbar-brand {
    color: #eef3ef;
}

.NavBarMain .navbar-nav > .nav-item > .nav-link {
    font-size: 14px;
    padding-top: 1.3rem;
    padding-bottom: 1.3rem;
    padding-left: 21px;
    padding-right: 21px;
    font-weight: 400;
    color: #eef3ef;
    opacity: 1 !important;
    transition: all 0.4s ease;
}

.NavBarMain .navbar-nav > .nav-item > .nav-link:hover {
    color: #588157;
    background: rgba(238, 243, 239, 0.1);
}

.NavBarMain .navbar-nav > .nav-item.active > a {
    color: #eef3ef;
    background: rgba(238, 243, 239, 0.2);
}

.SearchArea {
    height: 56px;
    border: 1px solid rgba(238, 243, 239, 0.2);
    border-radius: 28px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: none;
}

.SearchArea .form-control {
    width: calc(100% - 54px);
    border: none;
    background: transparent !important;
    color: rgba(238, 243, 239, 0.8) !important;
    font-size: 16px;
}

.SearchArea .search {
    width: 54px;
    height: 54px;
    background: transparent;
    border: none;
    color: #eef3ef;
}

.SearchArea .search span {
    font-size: 18px;
}

/* Hero Banner */
.BannerBlocks {
    position: relative;
}

.MainBanner {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.MainBanner.overlay {
    position: relative;
}

.MainBanner.overlay:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.4;
    background: #3e5a3d;
}

.FeatureBox {
    position: relative;
    padding: 34px;
    background: rgba(238, 243, 239, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 13px;
    box-shadow: 0 8px 32px rgba(62, 90, 61, 0.2);
    z-index: 2;
}

.FeatureBox:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 7px;
    width: 100%;
    background: linear-gradient(90deg, #588157 0%, #3e5a3d 100%);
    border-radius: 13px 13px 0 0;
}

.FeatureBox h3 {
    font-size: 28px;
    font-weight: 600;
    color: #3e5a3d;
    margin-bottom: 21px;
    font-family: 'Montserrat', sans-serif;
}

.FeatureBox ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.FeatureBox ul li {
    display: block;
    padding: 18px 0;
    list-style: none;
    border-bottom: 1px solid rgba(62, 90, 61, 0.1);
    margin: 0;
    position: relative;
    font-weight: 400;
}

.FeatureBox ul li .spec {
    position: absolute;
    right: 0;
    font-weight: 600;
    color: #588157;
}

.FeatureBox ul li:last-child {
    border-bottom: none;
}

.bg-light {
    background-color: rgba(238, 243, 239, 0.8) !important;
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    border-radius: 8px;
    margin-top: 21px;
}

.btn.btn-primary {
    background: linear-gradient(135deg, #588157 0%, #3e5a3d 100%);
    border: none;
    color: #eef3ef;
    padding: 12px 24px;
    border-radius: 21px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn.btn-primary:hover {
    background: linear-gradient(135deg, #3e5a3d 0%, #588157 100%);
    transform: translateY(-3px);
    box-shadow: 0 7px 21px rgba(62, 90, 61, 0.3);
}

.FooterMain {
    font-size: 16px;
    padding: 5em 0;
    z-index: 1;
    position: relative;
    background-size: cover;
    background-position: center;
}

.FooterMain .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    opacity: 0.85;
    background: linear-gradient(135deg, #3e5a3d 0%, #588157 100%);
    z-index: -1;
}

.FooterMain .FooterWidget {
    position: relative;
    z-index: 2;
}

.FooterMain .FooterWidget h2 {
    font-weight: 600;
    color: #eef3ef;
    margin-bottom: 21px;
    font-size: 22px;
    position: relative;
    z-index: 2;
}

.FooterMain .FooterWidget ul {
    position: relative;
    z-index: 2;
}

.FooterMain .FooterWidget ul li a {
    color: rgba(238, 243, 239, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    z-index: 2;
    display: block;
}

.FooterMain .FooterWidget ul li a:hover {
    color: #eef3ef;
}

.FooterMain .FooterWidget ul li a span {
    color: #eef3ef;
}

.FooterMain p {
    color: rgba(238, 243, 239, 0.7);
    position: relative;
    z-index: 2;
}

.FooterMain a {
    color: rgba(238, 243, 239, 0.7);
    text-decoration: none;
    position: relative;
    z-index: 2;
}

.FooterMain a:hover {
    color: #eef3ef;
}

.FooterMain .FooterTitle {
    font-size: 19px;
    font-weight: 600;
    color: #eef3ef;
}

.ContactBlock {
    position: relative;
    z-index: 2;
}

.ContactBlock ul {
    padding: 0;
    list-style: none;
}

.ContactBlock ul li, .ContactBlock ul li > a {
    display: table;
    line-height: 1.7;
    margin-bottom: 17px;
    color: rgba(238, 243, 239, 0.8);
    text-decoration: none;
    position: relative;
    z-index: 2;
}

.ContactBlock ul li span {
    color: rgba(238, 243, 239, 0.8);
}

.ContactBlock ul li .icon, .ContactBlock ul li .text {
    display: table-cell;
    vertical-align: top;
}

.ContactBlock ul li .icon {
    width: 34px;
    font-size: 16px;
    padding-top: 3px;
    color: #eef3ef;
}

@media (max-width: 1280px) {
    .col-xl-5 { flex: 0 0 50%; max-width: 50%; }
}

@media (max-width: 1024px) {
    .col-lg-6, .col-lg-8 { flex: 0 0 100%; max-width: 100%; }
    .col-xl-5 { flex: 0 0 75%; max-width: 75%; }
    
    .FeatureBox {
        margin: 0 auto;
        max-width: 600px;
    }
}

@media (max-width: 890px) {
    .NavBarMain {
        background: #3e5a3d !important;
        position: relative;
        top: 0;
        padding: 13px 17px;
    }
    
    .NavBarMain .navbar-nav {
        padding-bottom: 13px;
        width: 100%;
    }
    
    .NavBarMain .navbar-nav > .nav-item > .nav-link {
        padding-left: 0;
        padding-right: 0;
        padding-top: 0.8rem;
        padding-bottom: 0.8rem;
        color: rgba(238, 243, 239, 0.8);
        border-bottom: 1px solid rgba(238, 243, 239, 0.1);
    }
    
    .NavBarMain .navbar-nav > .nav-item > .nav-link:hover {
        color: #eef3ef;
        background: rgba(238, 243, 239, 0.1);
    }
    
    .NavBarMain .navbar-nav > .nav-item.active > a {
        color: #eef3ef;
        background: rgba(238, 243, 239, 0.2);
    }

    .col-md-8 { flex: 0 0 100%; max-width: 100%; }
    .col-xl-5 { flex: 0 0 100%; max-width: 100%; }
    
    .navbar-collapse {
        background: rgba(62, 90, 61, 0.95);
        margin-top: 15px;
        border-radius: 8px;
        padding: 15px;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
}

@media (max-width: 768px) {
    .HeaderTopSection .col-md-4,
    .HeaderTopSection .col-lg-8 {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center;
    }
    
    .HeaderTopSection .row {
        flex-direction: column;
    }
    
    .ContactInfo {
        justify-content: center;
        margin-bottom: 10px;
    }
}

@media (max-width: 640px) {
    .ContactInfo {
        margin-bottom: 13px;
        flex-direction: column;
        text-align: center;
    }
    
    .ContactInfo .icon {
        margin-bottom: 8px;
    }
    
    .ContactInfo .text {
        width: 100%;
        padding-left: 0;
        justify-content: center;
    }

    .FeatureBox {
        padding: 21px;
        margin: 20px;
    }

    .FeatureBox h3 {
        font-size: 24px;
        text-align: center;
    }

    .MainBanner {
        min-height: 70vh;
        padding: 20px 0;
    }

    .FooterMain {
        padding: 3em 0;
    }

    .FooterMain .col-md {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .ml-md-5 {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .FeatureBox {
        margin: 10px;
        padding: 15px;
    }
    
    .FeatureBox h3 {
        font-size: 20px;
    }
    
    .FeatureBox ul li {
        padding: 12px 0;
        font-size: 14px;
    }
    
    .ContactInfo .btn {
        font-size: 14px;
        padding: 8px 16px;
    }
    
    .navbar-brand {
        font-size: 22px;
    }
}

.navbar-toggler {
    border: none;
    background: transparent;
    color: #eef3ef;
    font-size: 18px;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.navbar-toggler:hover {
    background: rgba(238, 243, 239, 0.1);
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(238, 243, 239, 0.3);
}

.collapse:not(.show) {
    display: none;
}

.navbar-collapse.show {
    display: block;
}

.list-unstyled {
    list-style: none;
    padding: 0;
    margin: 0;
}

.form-group {
    margin-bottom: 0;
}

.form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.WhyVisitArea {
    padding: 74px 0 63px 0;
    background: linear-gradient(127deg, #eef3ef 0%, rgba(238, 243, 239, 0.7) 100%);
    position: relative;
}

.WhyVisitArea::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" patternUnits="userSpaceOnUse" width="2" height="2"><circle cx="1" cy="1" r="0.3" fill="%23588157" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
}

.SectionHeading {
    font-size: 42px;
    font-weight: 600;
    color: #3e5a3d;
    margin-bottom: 18px;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.3;
}

.SectionSubtext {
    font-size: 19px;
    color: rgba(62, 90, 61, 0.8);
    margin-bottom: 52px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    line-height: 1.5;
}

.ReasonCards {
    margin-top: 34px;
}

.ReasonBlock {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(88, 129, 87, 0.15);
    border-radius: 17px;
    padding: 39px 28px 32px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    margin-bottom: 27px;
    position: relative;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 8px 29px rgba(62, 90, 61, 0.08);
}

.ReasonBlock::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #588157, transparent);
    transition: left 0.6s ease;
}

.ReasonBlock:hover::before {
    left: 100%;
}

.ReasonBlock:hover {
    transform: translateY(-7px);
    box-shadow: 0 19px 47px rgba(62, 90, 61, 0.15);
    background: rgba(255, 255, 255, 0.85);
}

.IconWrapper {
    width: 89px;
    height: 89px;
    background: linear-gradient(134deg, #588157 0%, #3e5a3d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 23px;
    position: relative;
    box-shadow: 0 6px 21px rgba(88, 129, 87, 0.3);
}

.IconWrapper::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(134deg, #588157, #3e5a3d);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ReasonBlock:hover .IconWrapper::after {
    opacity: 0.3;
}

.IconWrapper .material-icons {
    font-size: 34px;
    color: #eef3ef;
}

.ReasonBlock h4 {
    font-size: 24px;
    font-weight: 600;
    color: #3e5a3d;
    margin-bottom: 19px;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.4;
}

.ReasonBlock p {
    font-size: 16px;
    line-height: 1.7;
    color: #3e5a3d;
    text-align: left;
    font-weight: 400;
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .SectionHeading {
        font-size: 36px;
    }
    
    .SectionSubtext {
        font-size: 17px;
        margin-bottom: 42px;
    }
    
    .ReasonBlock {
        padding: 32px 23px 27px;
    }
}

@media (max-width: 768px) {
    .WhyVisitArea {
        padding: 54px 0 43px 0;
    }
    
    .SectionHeading {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .SectionSubtext {
        font-size: 16px;
        margin-bottom: 37px;
        padding: 0 15px;
    }
    
    .ReasonCards {
        margin-top: 23px;
    }
    
    .ReasonBlock {
        margin-bottom: 32px;
        padding: 28px 21px 24px;
    }
    
    .ReasonBlock h4 {
        font-size: 22px;
        margin-bottom: 16px;
    }
    
    .IconWrapper {
        width: 76px;
        height: 76px;
        margin-bottom: 19px;
    }
    
    .IconWrapper .material-icons {
        font-size: 28px;
    }
}

@media (max-width: 640px) {
    .SectionHeading {
        font-size: 28px;
        line-height: 1.2;
    }
    
    .SectionSubtext {
        font-size: 15px;
    }
    
    .ReasonBlock {
        padding: 24px 18px 21px;
    }
    
    .ReasonBlock h4 {
        font-size: 20px;
    }
    
    .ReasonBlock p {
        font-size: 15px;
        line-height: 1.6;
    }
    
    .IconWrapper {
        width: 67px;
        height: 67px;
    }
    
    .IconWrapper .material-icons {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .WhyVisitArea {
        padding: 42px 0 34px 0;
    }
    
    .ReasonBlock {
        padding: 21px 15px 18px;
    }
    
    .SectionHeading {
        font-size: 24px;
        padding: 0 10px;
    }
}

.AtmosphereZone {
    padding: 87px 0 71px 0;
    background: #eef3ef;
    position: relative;
    overflow: hidden;
}

.AtmosphereZone::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 70%, rgba(88, 129, 87, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.ContentArea {
    padding: 23px 0;
    position: relative;
    z-index: 2;
}

.SectionLabel {
    display: inline-block;
    background: rgba(88, 129, 87, 0.1);
    color: #588157;
    padding: 9px 21px;
    border-radius: 27px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 19px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(88, 129, 87, 0.2);
}

.MainHeading {
    font-size: 46px;
    font-weight: 700;
    color: #3e5a3d;
    margin-bottom: 27px;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.2;
}

.ContentBlock {
    margin-top: 31px;
}

.LeadText {
    font-size: 19px;
    line-height: 1.6;
    color: rgba(62, 90, 61, 0.9);
    margin-bottom: 34px;
    font-weight: 400;
}

.DetailSection {
    margin-bottom: 32px;
    padding: 0 0 0 17px;
    border-left: 3px solid rgba(88, 129, 87, 0.3);
    position: relative;
}

.DetailSection::before {
    content: '';
    position: absolute;
    left: -3px;
    top: 0;
    width: 3px;
    height: 0;
    background: linear-gradient(180deg, #588157 0%, #3e5a3d 100%);
    transition: height 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.DetailSection:hover::before {
    height: 100%;
}

.DetailSection h4 {
    font-size: 22px;
    font-weight: 600;
    color: #3e5a3d;
    margin-bottom: 13px;
    font-family: 'Montserrat', sans-serif;
}

.DetailSection p {
    font-size: 16px;
    line-height: 1.7;
    color: #3e5a3d;
    margin-bottom: 0;
    text-align: justify;
}

.ImageContainer {
    padding: 0 23px;
    position: relative;
}

.ImageWrapper {
    position: relative;
    border-radius: 19px;
    overflow: hidden;
    box-shadow: 0 23px 67px rgba(62, 90, 61, 0.15);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.ImageWrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 34px 89px rgba(62, 90, 61, 0.25);
}

.AtmosphereImage {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 19px;
    transition: transform 0.6s ease;
}

.ImageWrapper:hover .AtmosphereImage {
    transform: scale(1.05);
}

.ImageOverlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(62, 90, 61, 0.7) 0%, rgba(88, 129, 87, 0.5) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 19px;
}

.ImageWrapper:hover .ImageOverlay {
    opacity: 1;
}

.OverlayContent {
    text-align: center;
    color: #eef3ef;
    transform: translateY(21px);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ImageWrapper:hover .OverlayContent {
    transform: translateY(0);
}

.OverlayIcon {
    font-size: 47px;
    margin-bottom: 11px;
    display: block;
}

.OverlayContent p {
    font-size: 18px;
    font-weight: 500;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .AtmosphereZone {
        padding: 67px 0 53px 0;
    }
    
    .MainHeading {
        font-size: 39px;
    }
    
    .LeadText {
        font-size: 17px;
        margin-bottom: 28px;
    }
    
    .DetailSection {
        margin-bottom: 27px;
        padding-left: 14px;
    }
    
    .DetailSection h4 {
        font-size: 20px;
    }
    
    .ImageContainer {
        padding: 0 18px;
        margin-top: 34px;
    }
}

@media (max-width: 768px) {
    .AtmosphereZone {
        padding: 52px 0 41px 0;
    }
    
    .ContentArea {
        padding: 18px 0;
        text-align: center;
    }
    
    .MainHeading {
        font-size: 34px;
        margin-bottom: 23px;
    }
    
    .LeadText {
        font-size: 16px;
        margin-bottom: 24px;
    }
    
    .DetailSection {
        text-align: left;
        margin-bottom: 24px;
        padding-left: 12px;
    }
    
    .DetailSection h4 {
        font-size: 19px;
        margin-bottom: 11px;
    }
    
    .DetailSection p {
        font-size: 15px;
        text-align: left;
    }
    
    .ImageContainer {
        margin-top: 28px;
        padding: 0 15px;
    }
    
    .OverlayIcon {
        font-size: 38px;
    }
    
    .OverlayContent p {
        font-size: 16px;
    }
}

@media (max-width: 640px) {
    .MainHeading {
        font-size: 29px;
    }
    
    .SectionLabel {
        font-size: 13px;
        padding: 7px 17px;
        margin-bottom: 16px;
    }
    
    .DetailSection {
        padding-left: 9px;
        margin-bottom: 21px;
    }
    
    .DetailSection h4 {
        font-size: 18px;
    }
    
    .DetailSection p {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .ImageWrapper {
        border-radius: 13px;
    }
    
    .AtmosphereImage,
    .ImageOverlay {
        border-radius: 13px;
    }
}

@media (max-width: 480px) {
    .AtmosphereZone {
        padding: 39px 0 32px 0;
    }
    
    .ContentArea {
        padding: 0;
    }
    
    .MainHeading {
        font-size: 26px;
    }
    
    .LeadText {
        font-size: 15px;
    }
    
    .ImageContainer {
        padding: 0 10px;
        margin-top: 24px;
    }
}

.col-12.col-lg-6.order-1.order-lg-2,
.col-12.col-lg-6.order-2.order-lg-1 {
    width: 100%;
    max-width: 100%;
}

@media (min-width: 1024px) {
    .col-12.col-lg-6.order-1.order-lg-2,
    .col-12.col-lg-6.order-2.order-lg-1 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

.ReservationSection {
    padding: 92px 0 78px 0;
    background: linear-gradient(142deg, #eef3ef 0%, rgba(238, 243, 239, 0.8) 100%);
    position: relative;
}

.ReservationSection::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 100px,
        rgba(88, 129, 87, 0.02) 100px,
        rgba(88, 129, 87, 0.02) 102px
    );
    pointer-events: none;
}

.SectionTitle {
    font-size: 44px;
    font-weight: 700;
    color: #3e5a3d;
    margin-bottom: 21px;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.2;
}

.SectionDescription {
    font-size: 18px;
    color: rgba(62, 90, 61, 0.8);
    margin-bottom: 52px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.ContactWrapper {
    margin-top: 37px;
}

.FormContainer {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(88, 129, 87, 0.2);
    border-radius: 21px;
    padding: 43px 38px 39px;
    box-shadow: 0 17px 53px rgba(62, 90, 61, 0.12);
    margin-bottom: 34px;
}

.ReservationForm {
    width: 100%;
}

.FormRow {
    display: flex;
    gap: 23px;
    margin-bottom: 27px;
}

.InputGroup {
    flex: 1;
    margin-bottom: 27px;
}

.FormRow .InputGroup {
    margin-bottom: 0;
}

.InputGroup label {
    display: block;
    font-weight: 600;
    color: #3e5a3d;
    margin-bottom: 9px;
    font-size: 15px;
}

.InputGroup input,
.InputGroup select,
.InputGroup textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(88, 129, 87, 0.2);
    border-radius: 11px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    color: #3e5a3d;
}

.InputGroup input:focus,
.InputGroup select:focus,
.InputGroup textarea:focus {
    outline: none;
    border-color: #588157;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 0 3px rgba(88, 129, 87, 0.1);
}

.InputGroup input.error,
.InputGroup select.error,
.InputGroup textarea.error {
    border-color: #dc3545;
    background: rgba(220, 53, 69, 0.05);
}

.ErrorMessage {
    display: block;
    color: #dc3545;
    font-size: 13px;
    margin-top: 6px;
    min-height: 18px;
    font-weight: 500;
}

.SubmitButton {
    background: linear-gradient(135deg, #588157 0%, #3e5a3d 100%);
    color: #eef3ef;
    border: none;
    padding: 16px 34px;
    border-radius: 29px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    align-items: center;
    gap: 11px;
    margin-top: 23px;
    box-shadow: 0 8px 23px rgba(88, 129, 87, 0.3);
}

.SubmitButton:hover {
    background: linear-gradient(135deg, #3e5a3d 0%, #588157 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 34px rgba(88, 129, 87, 0.4);
}

.SubmitButton .material-icons {
    font-size: 19px;
}

.MapContainer {
    padding: 0 23px;
}

.MapWrapper {
    border-radius: 21px;
    overflow: hidden;
    box-shadow: 0 19px 61px rgba(62, 90, 61, 0.15);
    margin-bottom: 32px;
}

.MapWrapper iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
}

.ContactInfo {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(88, 129, 87, 0.15);
    border-radius: 17px;
    padding: 31px 26px;
}

.ContactItem {
    display: flex;
    align-items: flex-start;
    margin-bottom: 28px;
    gap: 17px;
}

.ContactItem:last-child {
    margin-bottom: 0;
}

.ContactItem .material-icons {
    color: #588157;
    font-size: 26px;
    margin-top: 3px;
}

.ContactDetails h4 {
    font-size: 18px;
    font-weight: 600;
    color: #3e5a3d;
    margin-bottom: 7px;
    font-family: 'Montserrat', sans-serif;
}

.ContactDetails p {
    font-size: 15px;
    color: #3e5a3d;
    margin: 0;
    line-height: 1.5;
}

/* Popup Styles */
.PopupOverlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(62, 90, 61, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.PopupOverlay.show {
    opacity: 1;
    visibility: visible;
}

.PopupContent {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 19px;
    padding: 37px 42px 32px;
    max-width: 480px;
    width: 90%;
    text-align: center;
    box-shadow: 0 21px 67px rgba(62, 90, 61, 0.25);
    transform: translateY(30px);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.PopupOverlay.show .PopupContent {
    transform: translateY(0);
}

.PopupHeader {
    margin-bottom: 24px;
}

.PopupHeader .material-icons {
    font-size: 54px;
    color: #588157;
    margin-bottom: 16px;
    display: block;
}

.PopupHeader h3 {
    font-size: 26px;
    font-weight: 700;
    color: #3e5a3d;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.PopupBody p {
    font-size: 16px;
    color: #3e5a3d;
    line-height: 1.6;
    margin-bottom: 14px;
}

.PopupBody p:last-child {
    margin-bottom: 0;
}

.CloseButton {
    background: linear-gradient(135deg, #588157 0%, #3e5a3d 100%);
    color: #eef3ef;
    border: none;
    padding: 12px 28px;
    border-radius: 23px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 26px;
    transition: all 0.3s ease;
}

.CloseButton:hover {
    background: linear-gradient(135deg, #3e5a3d 0%, #588157 100%);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .ReservationSection {
        padding: 72px 0 58px 0;
    }
    
    .SectionTitle {
        font-size: 37px;
    }
    
    .FormContainer {
        padding: 34px 28px 31px;
    }
    
    .MapContainer {
        padding: 0 18px;
        margin-top: 34px;
    }
}

@media (max-width: 768px) {
    .ReservationSection {
        padding: 56px 0 44px 0;
    }
    
    .SectionTitle {
        font-size: 32px;
        margin-bottom: 18px;
    }
    
    .SectionDescription {
        font-size: 16px;
        margin-bottom: 39px;
    }
    
    .FormRow {
        flex-direction: column;
        gap: 0;
    }
    
    .FormContainer {
        padding: 28px 23px 26px;
    }
    
    .MapWrapper iframe {
        height: 350px;
    }
    
    .ContactInfo {
        padding: 24px 19px;
    }
    
    .ContactItem {
        margin-bottom: 23px;
        gap: 14px;
    }
    
    .ContactItem .material-icons {
        font-size: 22px;
    }
    
    .PopupContent {
        padding: 28px 32px 24px;
        width: 95%;
    }
    
    .PopupHeader h3 {
        font-size: 22px;
    }
}

@media (max-width: 640px) {
    .SectionTitle {
        font-size: 28px;
    }
    
    .FormContainer {
        padding: 23px 18px 21px;
    }
    
    .InputGroup input,
    .InputGroup select,
    .InputGroup textarea {
        padding: 12px 15px;
        font-size: 15px;
    }
    
    .SubmitButton {
        padding: 14px 28px;
        font-size: 16px;
    }
    
    .MapContainer {
        padding: 0 12px;
    }
    
    .MapWrapper iframe {
        height: 300px;
    }
    
    .ContactInfo {
        padding: 19px 16px;
    }
}

@media (max-width: 480px) {
    .ReservationSection {
        padding: 42px 0 34px 0;
    }
    
    .SectionTitle {
        font-size: 24px;
    }
    
    .SectionDescription {
        font-size: 15px;
        margin-bottom: 32px;
    }
    
    .FormContainer {
        padding: 19px 15px 17px;
    }
    
    .PopupContent {
        padding: 23px 26px 19px;
    }
    
    .PopupHeader .material-icons {
        font-size: 42px;
    }
    
    .PopupHeader h3 {
        font-size: 19px;
    }
}

.SpecialOfferZone {
    padding: 83px 0 69px 0;
    background: linear-gradient(156deg, #3e5a3d 0%, #588157 100%);
    position: relative;
    overflow: hidden;
}

.SpecialOfferZone::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(238, 243, 239, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.SpecialOfferZone::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(238, 243, 239, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.OfferImageArea {
    padding: 0 27px;
    position: relative;
    z-index: 2;
}

.ImageHolder {
    position: relative;
    border-radius: 23px;
    overflow: hidden;
    box-shadow: 0 29px 81px rgba(0, 0, 0, 0.25);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.ImageHolder:hover {
    transform: translateY(-11px) rotate(1deg);
}

.CheesecakeImage {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 23px;
    transition: transform 0.6s ease;
}

.ImageHolder:hover .CheesecakeImage {
    transform: scale(1.03);
}

.PriceTag {
    position: absolute;
    top: 24px;
    left: 24px;
    background: rgba(238, 243, 239, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 11px 19px;
    border-radius: 17px;
    box-shadow: 0 8px 27px rgba(0, 0, 0, 0.15);
}

.OriginalPrice {
    font-size: 16px;
    color: #888;
    text-decoration: line-through;
    margin-right: 8px;
    font-weight: 400;
}

.DiscountPrice {
    font-size: 24px;
    color: #3e5a3d;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.OfferBadge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 13px 18px;
    border-radius: 19px;
    display: flex;
    align-items: center;
    gap: 7px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 6px 21px rgba(231, 76, 60, 0.4);
    animation: pulseOffer 2s infinite;
}

@keyframes pulseOffer {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.OfferBadge .material-icons {
    font-size: 18px;
}

.OfferContent {
    padding: 31px 0;
    color: #eef3ef;
    position: relative;
    z-index: 2;
}

.LimitedTime {
    display: inline-block;
    background: rgba(238, 243, 239, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #eef3ef;
    padding: 8px 21px;
    border-radius: 23px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 17px;
    border: 1px solid rgba(238, 243, 239, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.OfferTitle {
    font-size: 47px;
    font-weight: 700;
    color: #eef3ef;
    margin-bottom: 23px;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.2;
}

.DiscountHighlight {
    margin-bottom: 29px;
}

.PercentageOff {
    font-size: 34px;
    font-weight: 700;
    color: #eef3ef;
    margin-right: 16px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.ValidUntil {
    font-size: 16px;
    color: rgba(238, 243, 239, 0.8);
    font-style: italic;
}

.MainDescription {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(238, 243, 239, 0.9);
    margin-bottom: 34px;
}

.FeaturesList {
    margin-bottom: 32px;
}

.FeatureItem {
    display: flex;
    align-items: flex-start;
    margin-bottom: 26px;
    gap: 16px;
}

.FeatureItem:last-child {
    margin-bottom: 0;
}

.FeatureItem .material-icons {
    color: #eef3ef;
    font-size: 24px;
    margin-top: 2px;
    background: rgba(238, 243, 239, 0.1);
    padding: 8px;
    border-radius: 50%;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.FeatureText h4 {
    font-size: 18px;
    font-weight: 600;
    color: #eef3ef;
    margin-bottom: 6px;
    font-family: 'Montserrat', sans-serif;
}

.FeatureText p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(238, 243, 239, 0.8);
    margin: 0;
}

.OfferTerms {
    background: rgba(238, 243, 239, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(238, 243, 239, 0.15);
    border-radius: 13px;
    padding: 19px 23px;
    margin-bottom: 34px;
}

.OfferTerms p {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(238, 243, 239, 0.8);
    margin: 0;
    font-style: italic;
}

.ActionButtons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.OrderButton,
.ReserveButton {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 15px 29px;
    border-radius: 27px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 8px 23px rgba(0, 0, 0, 0.2);
}

.OrderButton {
    background: linear-gradient(135deg, #eef3ef 0%, rgba(238, 243, 239, 0.9) 100%);
    color: #3e5a3d;
    border: 2px solid transparent;
}

.OrderButton:hover {
    background: #eef3ef;
    transform: translateY(-3px);
    box-shadow: 0 12px 34px rgba(238, 243, 239, 0.3);
    color: #3e5a3d;
    text-decoration: none;
}

.ReserveButton {
    background: transparent;
    color: #eef3ef;
    border: 2px solid rgba(238, 243, 239, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.ReserveButton:hover {
    background: rgba(238, 243, 239, 0.1);
    border-color: #eef3ef;
    transform: translateY(-3px);
    color: #eef3ef;
    text-decoration: none;
}

.OrderButton .material-icons,
.ReserveButton .material-icons {
    font-size: 19px;
}

@media (max-width: 1024px) {
    .SpecialOfferZone {
        padding: 67px 0 53px 0;
    }
    
    .OfferTitle {
        font-size: 39px;
    }
    
    .PercentageOff {
        font-size: 28px;
    }
    
    .OfferImageArea {
        padding: 0 21px;
        margin-bottom: 34px;
    }
    
    .OfferContent {
        padding: 0 21px;
    }
}

@media (max-width: 768px) {
    .SpecialOfferZone {
        padding: 52px 0 41px 0;
    }
    
    .OfferTitle {
        font-size: 34px;
        margin-bottom: 19px;
    }
    
    .PercentageOff {
        font-size: 24px;
        margin-right: 12px;
    }
    
    .ValidUntil {
        font-size: 14px;
    }
    
    .MainDescription {
        font-size: 16px;
        margin-bottom: 28px;
    }
    
    .FeatureItem {
        margin-bottom: 21px;
        gap: 13px;
    }
    
    .FeatureItem .material-icons {
        font-size: 20px;
        padding: 6px;
    }
    
    .FeatureText h4 {
        font-size: 16px;
    }
    
    .FeatureText p {
        font-size: 14px;
    }
    
    .OfferTerms {
        padding: 16px 19px;
        margin-bottom: 28px;
    }
    
    .ActionButtons {
        gap: 14px;
        justify-content: center;
    }
    
    .OrderButton,
    .ReserveButton {
        padding: 13px 24px;
        font-size: 15px;
    }
}

@media (max-width: 640px) {
    .OfferTitle {
        font-size: 29px;
        text-align: center;
    }
    
    .LimitedTime {
        display: block;
        text-align: center;
    }
    
    .DiscountHighlight {
        text-align: center;
        margin-bottom: 24px;
    }
    
    .PercentageOff {
        display: block;
        margin-right: 0;
        margin-bottom: 8px;
    }
    
    .OfferImageArea {
        padding: 0 16px;
        margin-bottom: 28px;
    }
    
    .OfferContent {
        padding: 0 16px;
        text-align: center;
    }
    
    .FeaturesList {
        text-align: left;
    }
    
    .OfferTerms {
        text-align: left;
    }
    
    .ActionButtons {
        flex-direction: column;
        align-items: center;
    }
    
    .OrderButton,
    .ReserveButton {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .SpecialOfferZone {
        padding: 39px 0 32px 0;
    }
    
    .OfferTitle {
        font-size: 24px;
    }
    
    .PercentageOff {
        font-size: 21px;
    }
    
    .PriceTag {
        padding: 8px 14px;
    }
    
    .OriginalPrice {
        font-size: 14px;
    }
    
    .DiscountPrice {
        font-size: 19px;
    }
    
    .OfferBadge {
        padding: 10px 14px;
        font-size: 12px;
    }
    
    .OfferBadge .material-icons {
        font-size: 16px;
    }
    
    .MainDescription {
        font-size: 15px;
    }
    
    .OfferTerms p {
        font-size: 13px;
    }
}

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

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #3e5a3d;
    background-color: #eef3ef;
}

.TermsContainer {
    max-width: 820px;
    margin: 0 auto;
    padding: 47px 23px;
    min-height: 100vh;
}

.ContentWrapper {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(88, 129, 87, 0.2);
    border-radius: 19px;
    padding: 52px 41px 47px;
    box-shadow: 0 17px 53px rgba(62, 90, 61, 0.12);
}

h1 {
    font-size: 42px;
    font-weight: 700;
    color: #3e5a3d;
    margin-bottom: 34px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.2;
}

h2 {
    font-size: 24px;
    font-weight: 600;
    color: #588157;
    margin-bottom: 16px;
    margin-top: 32px;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.3;
}

h2:first-of-type {
    margin-top: 0;
}

p {
    font-size: 16px;
    line-height: 1.7;
    color: #3e5a3d;
    margin-bottom: 21px;
    text-align: justify;
    font-weight: 400;
}

p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .TermsContainer {
        padding: 34px 18px;
    }
    
    .ContentWrapper {
        padding: 38px 28px 34px;
    }
    
    h1 {
        font-size: 34px;
        margin-bottom: 28px;
    }
    
    h2 {
        font-size: 21px;
        margin-bottom: 14px;
        margin-top: 26px;
    }
    
    p {
        font-size: 15px;
        margin-bottom: 18px;
        text-align: left;
    }
}

@media (max-width: 640px) {
    .TermsContainer {
        padding: 26px 15px;
    }
    
    .ContentWrapper {
        padding: 29px 21px 26px;
        border-radius: 13px;
    }
    
    h1 {
        font-size: 28px;
        margin-bottom: 23px;
    }
    
    h2 {
        font-size: 19px;
        margin-bottom: 12px;
        margin-top: 21px;
    }
    
    p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 16px;
    }
}

@media (max-width: 480px) {
    .TermsContainer {
        padding: 21px 12px;
    }
    
    .ContentWrapper {
        padding: 23px 17px 21px;
    }
    
    h1 {
        font-size: 24px;
        margin-bottom: 19px;
    }
    
    h2 {
        font-size: 17px;
        margin-bottom: 11px;
        margin-top: 18px;
    }
    
    p {
        font-size: 13px;
        margin-bottom: 14px;
    }
}

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

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #3e5a3d;
    background-color: #eef3ef;
}

.PrivacyContainer {
    max-width: 840px;
    margin: 0 auto;
    padding: 51px 26px;
    min-height: 100vh;
}

.ContentWrapper {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(88, 129, 87, 0.2);
    border-radius: 21px;
    padding: 56px 44px 51px;
    box-shadow: 0 19px 57px rgba(62, 90, 61, 0.14);
}

h1 {
    font-size: 44px;
    font-weight: 700;
    color: #3e5a3d;
    margin-bottom: 36px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.2;
}

h2 {
    font-size: 25px;
    font-weight: 600;
    color: #588157;
    margin-bottom: 17px;
    margin-top: 34px;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.3;
}

h2:first-of-type {
    margin-top: 0;
}

p {
    font-size: 16px;
    line-height: 1.7;
    color: #3e5a3d;
    margin-bottom: 22px;
    text-align: justify;
    font-weight: 400;
}

p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .PrivacyContainer {
        padding: 36px 19px;
    }
    
    .ContentWrapper {
        padding: 41px 31px 37px;
    }
    
    h1 {
        font-size: 36px;
        margin-bottom: 31px;
    }
    
    h2 {
        font-size: 22px;
        margin-bottom: 15px;
        margin-top: 28px;
    }
    
    p {
        font-size: 15px;
        margin-bottom: 19px;
        text-align: left;
    }
}

@media (max-width: 640px) {
    .PrivacyContainer {
        padding: 28px 16px;
    }
    
    .ContentWrapper {
        padding: 32px 23px 29px;
        border-radius: 15px;
    }
    
    h1 {
        font-size: 30px;
        margin-bottom: 26px;
    }
    
    h2 {
        font-size: 20px;
        margin-bottom: 13px;
        margin-top: 23px;
    }
    
    p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 17px;
    }
}

@media (max-width: 480px) {
    .PrivacyContainer {
        padding: 23px 13px;
    }
    
    .ContentWrapper {
        padding: 26px 19px 24px;
    }
    
    h1 {
        font-size: 26px;
        margin-bottom: 21px;
    }
    
    h2 {
        font-size: 18px;
        margin-bottom: 12px;
        margin-top: 19px;
    }
    
    p {
        font-size: 13px;
        margin-bottom: 15px;
    }
}

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

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #3e5a3d;
    background-color: #eef3ef;
    background: linear-gradient(147deg, #eef3ef 0%, rgba(238, 243, 239, 0.8) 100%);
}

.AboutContainer {
    max-width: 890px;
    margin: 0 auto;
    padding: 59px 31px;
    min-height: 100vh;
}

.ContentArea {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(88, 129, 87, 0.25);
    border-radius: 23px;
    padding: 63px 47px 58px;
    box-shadow: 0 21px 61px rgba(62, 90, 61, 0.16);
}

h1 {
    font-size: 48px;
    font-weight: 700;
    color: #3e5a3d;
    margin-bottom: 41px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.1;
}

.IntroSection {
    margin-bottom: 43px;
    text-align: center;
}

.IntroSection p {
    font-size: 19px;
    line-height: 1.65;
    color: rgba(62, 90, 61, 0.9);
    font-weight: 400;
    max-width: 720px;
    margin: 0 auto;
}

.StorySection {
    margin-bottom: 47px;
}

.IconHeader {
    display: flex;
    align-items: center;
    gap: 17px;
    margin-bottom: 23px;
}

.IconHeader .material-icons {
    font-size: 32px;
    color: #588157;
    background: rgba(88, 129, 87, 0.1);
    padding: 11px;
    border-radius: 50%;
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
}

.IconHeader h2 {
    font-size: 28px;
    font-weight: 600;
    color: #588157;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.3;
}

.ValuesGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 29px;
    margin-bottom: 51px;
}

.ValueItem {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);
    border: 1px solid rgba(88, 129, 87, 0.18);
    border-radius: 17px;
    padding: 33px 26px 29px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 9px 33px rgba(62, 90, 61, 0.09);
}

.ValueItem:hover {
    transform: translateY(-6px);
    box-shadow: 0 17px 49px rgba(62, 90, 61, 0.18);
    background: rgba(255, 255, 255, 0.85);
}

.ValueItem .material-icons {
    font-size: 38px;
    color: #588157;
    margin-bottom: 19px;
    display: block;
}

.ValueItem h3 {
    font-size: 21px;
    font-weight: 600;
    color: #3e5a3d;
    margin-bottom: 14px;
    font-family: 'Montserrat', sans-serif;
}

.ValueItem p {
    font-size: 15px;
    line-height: 1.6;
    color: #3e5a3d;
    margin: 0;
}

.CraftSection {
    margin-bottom: 39px;
}

.TeamSection {
    margin-bottom: 37px;
}

.CommitmentSection {
    margin-bottom: 0;
}

p {
    font-size: 16px;
    line-height: 1.7;
    color: #3e5a3d;
    margin-bottom: 19px;
    text-align: justify;
    font-weight: 400;
}

p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .AboutContainer {
        padding: 42px 21px;
    }
    
    .ContentArea {
        padding: 46px 34px 41px;
    }
    
    h1 {
        font-size: 38px;
        margin-bottom: 33px;
    }
    
    .IntroSection {
        margin-bottom: 36px;
    }
    
    .IntroSection p {
        font-size: 17px;
    }
    
    .IconHeader {
        gap: 14px;
        margin-bottom: 19px;
    }
    
    .IconHeader .material-icons {
        font-size: 27px;
        padding: 9px;
    }
    
    .IconHeader h2 {
        font-size: 24px;
    }
    
    .ValuesGrid {
        gap: 23px;
        margin-bottom: 41px;
    }
    
    .ValueItem {
        padding: 27px 21px 24px;
    }
    
    .ValueItem .material-icons {
        font-size: 32px;
        margin-bottom: 16px;
    }
    
    .ValueItem h3 {
        font-size: 19px;
        margin-bottom: 12px;
    }
    
    .StorySection {
        margin-bottom: 38px;
    }
    
    .CraftSection {
        margin-bottom: 32px;
    }
    
    .TeamSection {
        margin-bottom: 31px;
    }
    
    p {
        font-size: 15px;
        margin-bottom: 16px;
        text-align: left;
    }
}

@media (max-width: 640px) {
    .AboutContainer {
        padding: 33px 17px;
    }
    
    .ContentArea {
        padding: 36px 26px 33px;
        border-radius: 17px;
    }
    
    h1 {
        font-size: 31px;
        margin-bottom: 27px;
    }
    
    .IntroSection p {
        font-size: 16px;
    }
    
    .IconHeader h2 {
        font-size: 21px;
    }
    
    .ValuesGrid {
        grid-template-columns: 1fr;
        gap: 19px;
        margin-bottom: 34px;
    }
    
    .ValueItem {
        padding: 23px 18px 21px;
    }
    
    .ValueItem .material-icons {
        font-size: 28px;
        margin-bottom: 13px;
    }
    
    .ValueItem h3 {
        font-size: 17px;
        margin-bottom: 11px;
    }
    
    .ValueItem p {
        font-size: 14px;
        text-align: center;
    }
    
    p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 14px;
    }
}

@media (max-width: 480px) {
    .AboutContainer {
        padding: 26px 13px;
    }
    
    .ContentArea {
        padding: 28px 19px 26px;
    }
    
    h1 {
        font-size: 26px;
        margin-bottom: 22px;
    }
    
    .IntroSection {
        margin-bottom: 28px;
    }
    
    .IntroSection p {
        font-size: 15px;
    }
    
    .IconHeader {
        gap: 11px;
        margin-bottom: 16px;
    }
    
    .IconHeader .material-icons {
        font-size: 23px;
        padding: 7px;
    }
    
    .IconHeader h2 {
        font-size: 18px;
    }
    
    .ValuesGrid {
        gap: 16px;
        margin-bottom: 27px;
    }
    
    .ValueItem {
        padding: 19px 15px 17px;
    }
    
    .ValueItem .material-icons {
        font-size: 24px;
        margin-bottom: 11px;
    }
    
    .ValueItem h3 {
        font-size: 16px;
        margin-bottom: 9px;
    }
    
    .ValueItem p {
        font-size: 13px;
    }
    
    p {
        font-size: 13px;
        margin-bottom: 12px;
    }
}


@media (max-width: 890px) {
    .HeaderTopSection {
        display: none;
    }
}

.NavBarMain {
    background: #3e5a3d !important;
    background: linear-gradient(45deg, #3e5a3d 0%, #588157 100%);
    z-index: 999;
    padding: 0;
    box-shadow: 0 4px 12px rgba(62, 90, 61, 0.15);
    position: relative;
}

.NavBarMain .container {
    position: relative;
}

.NavBarMain .navbar-brand {
    color: #eef3ef;
    z-index: 1001;
    position: relative;
}

@media (max-width: 890px) {
    .NavBarMain {
        background: #3e5a3d !important;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        padding: 15px 0;
        z-index: 1000;
    }
    
    .NavBarMain .container {
        padding: 0 20px;
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    /* Hamburger Button Styling */
    .navbar-toggler {
        border: none;
        background: transparent;
        color: #eef3ef;
        font-size: 24px;
        padding: 8px;
        border-radius: 4px;
        transition: all 0.3s ease;
        cursor: pointer;
        z-index: 1001;
        position: relative;
    }
    
    .navbar-toggler:hover {
        background: rgba(238, 243, 239, 0.15);
        transform: scale(1.05);
    }
    
    .navbar-toggler:focus {
        outline: none;
        box-shadow: 0 0 0 2px rgba(238, 243, 239, 0.3);
    }
    
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(62, 90, 61, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 1000;
    }
    
    .navbar-collapse.show {
        transform: translateX(0);
        margin-top: 50px;
    }
    
    /* Mobile Menu Items */
    .NavBarMain .navbar-nav {
        padding: 0;
        width: auto;
        text-align: center;
    }
    
    .NavBarMain .navbar-nav > .nav-item {
        margin-bottom: 20px;
    }
    
    .NavBarMain .navbar-nav > .nav-item > .nav-link {
        padding: 20px 40px;
        font-size: 24px;
        font-weight: 600;
        color: #eef3ef;
        border: 2px solid transparent;
        border-radius: 12px;
        transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        display: block;
        min-width: 200px;
    }
    
    .NavBarMain .navbar-nav > .nav-item > .nav-link:hover {
        color: #3e5a3d;
        background: rgba(238, 243, 239, 0.95);
        border-color: rgba(238, 243, 239, 0.5);
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    }
    
    .NavBarMain .navbar-nav > .nav-item.active > a {
        color: #3e5a3d;
        background: rgba(238, 243, 239, 0.9);
        border-color: #eef3ef;
    }
    
    .navbar-collapse::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: transparent;
        z-index: -1;
    }
    
    body.menu-open {
        overflow: hidden;
        height: 100vh;
    }
    
    body {
        padding-top: 70px;
    }
}

@media (min-width: 891px) {
    .NavBarMain .navbar-nav > .nav-item > .nav-link {
        font-size: 14px;
        padding-top: 1.3rem;
        padding-bottom: 1.3rem;
        padding-left: 21px;
        padding-right: 21px;
        font-weight: 400;
        color: #eef3ef;
        opacity: 1 !important;
        transition: all 0.4s ease;
    }
    
    .NavBarMain .navbar-nav > .nav-item > .nav-link:hover {
        color: #588157;
        background: rgba(238, 243, 239, 0.1);
    }
    
    .NavBarMain .navbar-nav > .nav-item.active > a {
        color: #eef3ef;
        background: rgba(238, 243, 239, 0.2);
    }
    
    .navbar-toggler {
        display: none;
    }
    
    body {
        padding-top: 0;
    }
}

* {
    -webkit-tap-highlight-color: transparent;
}

@media (max-width: 640px) {
    .NavBarMain .container {
        padding: 0 15px;
    }
    
    .navbar-brand {
        font-size: 20px;
    }
    
    .navbar-brand span {
        font-size: 18px;
    }
    
    .NavBarMain .navbar-nav > .nav-item > .nav-link {
        font-size: 20px;
        padding: 15px 30px;
        min-width: 180px;
    }
}


.WhyVisitArea {
    padding: 74px 0 63px 0;
    background: linear-gradient(127deg, #eef3ef 0%, rgba(238, 243, 239, 0.7) 100%);
    position: relative;
}

.ReasonCards {
    margin-top: 34px;
}

.ReasonBlock {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(88, 129, 87, 0.15);
    border-radius: 17px;
    padding: 39px 28px 32px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    margin-bottom: 27px;
    position: relative;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 8px 29px rgba(62, 90, 61, 0.08);
}

@media (min-width: 769px) {
    .col-md-4 { 
        flex: 0 0 33.333333%; 
        max-width: 33.333333%; 
    }
}

@media (max-width: 768px) and (min-width: 641px) {
    .ReasonCards .col-md-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .ReasonCards .col-md-4:last-child {
        flex: 0 0 100%;
        max-width: 100%;
        margin-top: 20px;
    }
    
    .ReasonBlock {
        padding: 32px 24px 28px;
        margin-bottom: 25px;
    }
    
    .ReasonBlock h4 {
        font-size: 22px;
        margin-bottom: 16px;
    }
    
    .ReasonBlock p {
        font-size: 15px;
        line-height: 1.6;
    }
    
    .IconWrapper {
        width: 76px;
        height: 76px;
        margin-bottom: 19px;
    }
    
    .IconWrapper .material-icons {
        font-size: 28px;
    }
}

@media (max-width: 640px) {
    .ReasonCards .col-md-4,
    .ReasonCards .col-12.col-md-4 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        margin-bottom: 25px;
    }
    
    .ReasonCards {
        margin-top: 25px;
    }
    
    .ReasonBlock {
        padding: 30px 25px 28px;
        margin-bottom: 25px;
        min-height: auto;
        text-align: center;
    }
    
    .ReasonBlock h4 {
        font-size: 20px;
        margin-bottom: 15px;
        line-height: 1.3;
    }
    
    .ReasonBlock p {
        font-size: 15px;
        line-height: 1.6;
        text-align: center;
        margin-bottom: 0;
    }
    
    .IconWrapper {
        width: 70px;
        height: 70px;
        margin: 0 auto 18px;
    }
    
    .IconWrapper .material-icons {
        font-size: 26px;
    }
    
    .ReasonCards .col-md-4:last-child .ReasonBlock {
        margin-bottom: 0;
    }
}

@media (max-width: 480px) {
    .WhyVisitArea {
        padding: 50px 0 40px 0;
    }
    
    .SectionHeading {
        font-size: 24px;
        padding: 0 15px;
        line-height: 1.2;
    }
    
    .SectionSubtext {
        font-size: 15px;
        padding: 0 20px;
        margin-bottom: 35px;
    }
    
    .ReasonBlock {
        padding: 25px 20px 24px;
        margin: 0 10px 20px 10px;
    }
    
    .ReasonBlock h4 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .ReasonBlock p {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .IconWrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .IconWrapper .material-icons {
        font-size: 22px;
    }
}

.ReasonCards.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.ReasonCards .col-md-4 {
    padding: 0 15px;
}

@media (max-width: 1024px) and (min-width: 769px) {
    .ReasonBlock {
        padding: 35px 25px 30px;
    }
    
    .ReasonBlock h4 {
        font-size: 21px;
    }
    
    .ReasonBlock p {
        font-size: 15px;
    }
}