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

body {
    font-family: 'Open Sans', sans-serif;
    background: #f0f4f8;
    color: #0a3d62;
    line-height: 1.6;
}

.wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.topbar {
    background: #003087;
    color: #fff;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    z-index: 100;
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.brand {
    font-size: 2.2rem;
    font-weight: 600;
}

.menu {
    display: flex;
    align-items: center;
}

.menu-list {
    list-style: none;
    display: flex;
    gap: 25px;
}

.menu-link {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.menu-link:hover {
    color: #56cfe1;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.6rem;
    cursor: pointer;
}

.main-content {
    padding: 100px 0 60px;
}

.welcome, .inspiration, .destinations, .vision, .stories, .offer, .explore, .blog-section, .tips-section, .products-section, .cart-section, .cart-tips, .privacy-section, .terms-section {
    margin-bottom: 70px;
}

h2 {
    color: #003087;
    font-size: 2.3rem;
    margin-bottom: 25px;
}

h3 {
    color: #003087;
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.inspiration-grid, .stories-grid, .tips-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.inspiration-item, .story-item, .tips-list li {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.destinations-grid, .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.destination-item, .product-card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.destination-link {
    color: #003087;
    text-decoration: none;
}

.destination-link:hover {
    text-decoration: underline;
}

.product-card {
    text-align: center;
}

.add-to-cart {
    background: #0077b6;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

.add-to-cart:hover {
    background: #005f8c;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #f6faff;
    margin: 10px 0;
    border-radius: 8px;
}

#lead-form input, #lead-form textarea {
    width: 100%;
    margin: 10px 0;
    padding: 12px;
    border: 1px solid #56cfe1;
    border-radius: 8px;
}

#lead-form button {
    background: #003087;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

#lead-form button:hover {
    background: #005f8c;
}

.bottom {
    background: #0a3d62;
    color: #fff;
    text-align: center;
    padding: 40px 0;
}

.bottom-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.bottom-link {
    color: #56cfe1;
    text-decoration: none;
}

.bottom-link:hover {
    text-decoration: underline;
}

.action-btn {
    background: #0077b6;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 8px;
    display: inline-block;
    transition: background 0.3s;
}

.action-btn:hover {
    background: #005f8c;
}

@media (max-width: 768px) {
    .menu-list {
        display: none;
        flex-direction: column;
        gap: 15px;
    }

    .menu-toggle {
        display: block;
    }

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

    .inspiration-grid, .stories-grid, .tips-list, .destinations-grid, .products-grid {
        grid-template-columns: 1fr;
    }
}