body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #e8f4f8;
    color: #0b274e;
    line-height: 1.6;
}

header {
    background-color: #c5ddff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(11, 39, 78, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 50px;
    transition: transform 0.3s;
}

.logo img:hover {
    transform: rotate(10deg);
}

.company-text {
    color: #0b274e;
    font-size: 20px;
    font-weight: bold;
    white-space: nowrap;
}

.company-text-part {
    display: block;
}

.company-text-part:nth-child(1) {
    display: inline;
}

.company-text-part:nth-child(2) {
    display: block;
    font-size: 14px;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #f1c40f;
    margin: 5px 0;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
    display: flex;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

nav a {
    color: #0b274e;
    text-decoration: none;
    font-weight: bold;
    padding: 10px;
    transition: color 0.3s, background-color 0.3s;
}

nav a:hover {
    color: #0c2b55;
    background-color: rgba(11, 39, 78, 0.1);
}

nav a.active {
    color: #113870;
    background-color: rgba(11, 39, 78, 0.1);
}

.hero {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 400px;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.hero .slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.hero .slide {
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero .dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero .dot {
    width: 12px;
    height: 12px;
    background-color: #c5ddff;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.hero .dot.active {
    background-color: #f1c40f;
}

.about-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.about-section h1 {
    color: #0b274e;
    margin-bottom: 20px;
}

.about-section p {
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.about-block {
    background: #c5ddff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(11, 39, 78, 0.1);
    transition: transform 0.3s;
}

.about-block:hover {
    transform: translateY(-5px);
}

.about-block h2 {
    color: #0b274e;
    margin-bottom: 10px;
}

.about-block ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.about-block ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
}

.about-block ul li:before {
    content: "•";
    color: #f39c12;
    position: absolute;
    left: 0;
}

.contact-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.contact-section h1 {
    color: #0b274e;
    margin-bottom: 20px;
}

.contact-section p {
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info h2 {
    color: #0b274e;
    margin: 20px 0 10px;
}

.contact-info p {
    margin: 10px 0;
}

.contact-info a {
    color: #f39c12;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-form {
    max-width: 500px;
    margin: 0 auto 40px;
    text-align: left;
}

.contact-form label {
    display: block;
    margin: 10px 0 5px;
    font-weight: bold;
    color: #0b274e;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 2px solid #0b274e;
    border-radius: 5px;
    font-size: 16px;
    margin-bottom: 15px;
    box-sizing: border-box;
    background-color: #c5ddff;
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    box-shadow: 0 0 10px rgba(11, 39, 78, 0.5);
    outline: none;
}

.contact-form button.cta-button {
    background-color: #f39c12;
    color: #0b274e;
    border: 2px solid #0b274e;
    padding: 15px 30px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s, color 0.3s;
    display: inline-block;
}

.contact-form button.cta-button:hover {
    background-color: #f1c40f;
    color: #c5ddff;
    transform: scale(1.1);
}

.cta-button {
    background-color: #f39c12;
    color: #0b274e;
    border: 2px solid #0b274e;
    padding: 15px 30px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s, color 0.3s;
    display: inline-block;
}

.cta-button:hover {
    background-color: #f1c40f;
    color: #c5ddff;
    transform: scale(1.1);
}

.search-bar, .tour-controls {
    margin: 20px 0;
    text-align: center;
}

.search-bar input, #tour-search {
    padding: 12px;
    width: 100%;
    max-width: 350px;
    border: 2px solid #0b274e;
    border-radius: 25px;
    font-size: 16px;
    background-color: #c5ddff;
    transition: box-shadow 0.3s;
    box-sizing: border-box;
}

.search-bar input:focus, #tour-search:focus {
    box-shadow: 0 0 10px rgba(11, 39, 78, 0.5);
    outline: none;
}

.tour-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.tour-filter {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tour-filter label {
    font-weight: bold;
    color: #0b274e;
}

.tour-filter select {
    padding: 10px;
    border: 2px solid #0b274e;
    border-radius: 5px;
    font-size: 16px;
    background-color: #c5ddff;
}

.places, .tours {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
}

.place-card, .tour-card {
    background: #c5ddff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(11, 39, 78, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.place-card:hover, .tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 20px rgba(11, 39, 78, 0.3);
}

.place-card img, .tour-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
}

.place-card a, .tour-card a {
    color: #f39c12;
    text-decoration: none;
    font-weight: bold;
}

.historical-places h1, .tours-section h1, .contact-section h1, .about-section h1 {
    color: #0b274e;
    margin-bottom: 10px;
}

.historical-places p, .tours-section p, .contact-section p, .about-section p {
    margin-bottom: 20px;
}

footer {
    background-color: #0b274e;
    color: #f1c40f;
    padding: 20px;
    text-align: center;
    margin-top: 40px;
}

footer .contact-info {
    margin: 10px 0;
}

footer .contact-info p {
    margin: 5px 0;
}

footer .contact-info a {
    color: #f1c40f;
    text-decoration: none;
}

footer .contact-info a:hover {
    text-decoration: underline;
}

.socials a {
    color: #f1c40f;
    text-decoration: none;
    margin: 0 15px;
    font-size: 16px;
    transition: color 0.3s;
}

.socials a:hover {
    color: #f39c12;
}

.contact-section {
    max-width: 800px;
}

.contact-info h2, .contact-form h2 {
    color: #0b274e;
    margin: 20px 0 10px;
}

.contact-form {
    margin-top: 30px;
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form label {
    display: block;
    margin: 10px 0 5px;
    font-weight: bold;
    color: #0b274e;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 2px solid #0b274e;
    border-radius: 5px;
    font-size: 16px;
    margin-bottom: 15px;
    box-sizing: border-box;
    background-color: #c5ddff;
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    box-shadow: 0 0 10px rgba(11, 39, 78, 0.5);
    outline: none;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100%;
        width: 250px;
        background-color: #c5ddff;
        transition: right 0.3s ease;
        z-index: 1000;
    }

    .nav-menu.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }

    nav a {
        padding: 15px;
        display: block;
    }

    header {
        padding: 10px;
    }

    .logo-container {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 10px;
    }

    .company-text-part {
        display: inline;
    }

    .company-text-part:nth-child(1) {
        display: inline;
    }

    .company-text-part:nth-child(2) {
        display: block;
        font-size: 14px;
    }

    .hero {
        min-height: 200px;
    }

    .search-bar input, #tour-search {
        width: 100%;
        max-width: 100%;
    }

    .tour-controls {
        flex-direction: column;
        gap: 15px;
    }

    .historical-places, .tours-section, .contact-section, .about-section {
        padding: 20px;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .socials a {
        margin: 0 10px;
        font-size: 14px;
    }

    .contact-form {
        max-width: 100%;
    }
}