<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* ÐžÑÐ½Ð¾Ð²Ð½Ñ‹Ðµ ÑÑ‚Ð¸Ð»Ð¸ */
:root {
    --primary-color: #28a745;
    --secondary-color: #fff;
    --text-color: #333;
    --accent-color: #ff6f61;
    --background-gradient: linear-gradient(135deg, #f0f8ff 0%, #e6f4ea 100%);
}

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

body {
    font-family: 'Poppins', sans-serif;
    background: var(--background-gradient);
    color: var(--text-color);
    line-height: 1.6;
}

/* Ð¥ÐµÐ´ÐµÑ€ */
.header {
    background: #43ad5a;
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

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

.logo img {
    height: 40px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%) rotate(-2deg);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.nav-menu a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.nav-menu a:hover {
    background: var(--accent-color);
    transform: scale(1.05);
}

.burger {
    display: none;
    color: var(--primary-color);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ÐžÐ±Ñ‰Ð¸Ðµ ÑÑ‚Ð¸Ð»Ð¸ Ð´Ð»Ñ ÑÐµÐºÑ†Ð¸Ð¹ */
section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

h2::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Ð“ÐµÑ€Ð¾Ð¹ÑÐºÐ¸Ð¹ Ð±Ð»Ð¾Ðº (ÑÐ»Ð°Ð¹Ð´ÐµÑ€) */
.hero-section {
    padding-top: 5rem;
    position: relative;
    overflow-x: clip;
}

.hero-slider {
    position: relative;
}

.hero-slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.hero-slide {
    min-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 5rem 2rem;
    background-size: cover;
    background-position: center;
    color: var(--secondary-color);
    text-align: center;
}

.hero-slide h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.hero-slide p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.hero-slide .btn {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 0.8rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.3s ease;
}

.hero-slide .btn:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.slider-nav {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: var(--secondary-color);
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    border-radius: 50%;
}

.slider-nav.prev {
    left: 1rem;
}

.slider-nav.next {
    right: 1rem;
}

.slider-dots {
    display: none;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}

.slider-dot.active {
    background: var(--primary-color);
}

/* Ð¡ÐµÐºÑ†Ð¸Ñ About */
.about-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: center;
}

.about-item {
    background: #e9e9e96b;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.about-item img {
    width: 100%;
    max-width: 200px;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.about-item h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.about-item h4 {
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.about-item p {
    margin-bottom: 1rem;
}

 .btn {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin-top: 20px;
    display: block;
    text-decoration: none;
}

/* Ð¡ÐµÐºÑ†Ð¸Ñ Features */
.features-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.feature-item {
    background: var(--secondary-color);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.feature-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

/* Ð¡ÐµÐºÑ†Ð¸Ñ Destinations */
.destinations-section {
    text-align: center;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.destination-item {
    background: var(--secondary-color);
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.destination-item img {
    width: 100%;
    max-height: 170px;
    object-fit: cover;
    height: 100%;
    border-radius: 10px;
    margin-bottom: 1rem;
}

/* Ð¡ÐµÐºÑ†Ð¸Ñ Services */
.services-section {
    text-align: center;
    width: 100%;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.service-item {
    background: var(--secondary-color);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-item i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

/* Ð¡ÐµÐºÑ†Ð¸Ñ Tour Packages */
.tour-packages-section {
    text-align: center;
}

.tour-packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.tour-package-item {
    background: #c4efbc;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.tour-package-item img {
    width: 100%;
    border-radius: 10px;
    max-height: 230px;
    object-fit: cover;
    margin-bottom: 1rem;
    height: 100%;
}

.tour-package-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.tour-package-item .price {
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 1rem;
}

/* Ð¡ÐµÐºÑ†Ð¸Ñ Newsletter */
.newsletter-section {
 
    padding: 3rem 2rem;
    color: var(--secondary-color);
    text-align: center;
}

.newsletter-section h2 {
    color: var(--secondary-color);
}

.newsletter-form {
    max-width: 600px;
    margin: 2rem auto;
    display: flex;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem;
    border: none;
    border-radius: 5px;
}

.newsletter-form button {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--accent-color);
}

/* Ð¡ÐµÐºÑ†Ð¸Ñ Guides */
.guides-section {
    text-align: center;
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.guide-item {
    background: var(--secondary-color);
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.guide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 170px;
    border-radius: 10px;
    margin-bottom: 1rem;
}

/* Ð¡ÐµÐºÑ†Ð¸Ñ Testimonials */
.testimonials-section {
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.testimonial-item {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.testimonial-item p {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-item .author {
    font-weight: bold;
}

/* Ð¡ÐµÐºÑ†Ð¸Ñ Blog */
.blog-section {
    text-align: center;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.blog-item {
    background: var(--secondary-color);
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.blog-item img {
    width: 100%;
    height: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

/* Ð¡ÐµÐºÑ†Ð¸Ñ Contact */
.contact-section {
    background: var(--primary-color);
    color: var(--secondary-color);
    text-align: center;
    padding: 3rem 2rem;
}

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

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: none;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
}

.contact-form button {
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background: var(--accent-color);
    color: var(--secondary-color);
}

.contact-info {
    margin-top: 2rem;
}

/* Ð¤ÑƒÑ‚ÐµÑ€ */
.footer {
    background: #333;
    color: var(--secondary-color);
    padding: 2rem;
    text-align: center;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.footer-grid a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-grid a:hover {
    color: var(--accent-color);
}

.footer-grid h3 {
    margin-bottom: 1rem;
}

.footer-grid .logo img {
    height: 40px;
}

/* ÐÐ´Ð°Ð¿Ñ‚Ð¸Ð²Ð½Ð¾ÑÑ‚ÑŒ */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--primary-color);
        padding: 1rem;
        transform: translate(0, 0);
    }

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

    .burger {
        display: block;
    }

    .hero-slide h1 {
        font-size: 2rem;
    }

    .hero-slide p {
        font-size: 1rem;
    }

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

html,body{
    display: flex;
    flex-direction: column;
    height: 100%;
}
a{
    text-decoration: none;
}
.f{
    display: flex;
}
.f-col{
   flex-direction: column;
}
.f-wrap{
    display: flex;
    flex-wrap: wrap;
}
.f-star{
    align-items:flex-start
}
.b.f {
    display: flex
;

    justify-content: space-around;
}
@media screen and (max-width:768px) {
    .f{
       flex-wrap: wrap;
    }
    .map img{
width: 100%;
}
.map p{
width: 100%;
}
.b.f{
    flex-direction: column;
}
.features-section,
.about-section{
    display: flex;
    flex-direction: column;
}
.tour-package-item img {
    width: 100%;
    border-radius: 10px;
    max-height: 250px;
    object-fit: cover;
    margin-bottom: 1rem;
    height: auto;
}
i.fas.fa-bars {
    color: #fff;
}
.nav-menu {

    align-items: center;
    gap: 1.5rem;
    background: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 0px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%) rotate(0deg);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
}</pre></body></html>