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

body {
    font-family: 'Arial', sans-serif;
    background: #f0faff;
    color: #0a2b5c;
    line-height: 1.7;
}

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

.header {
    background: #0077b6;
    color: #fff;
    padding: 25px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 2.8rem;
    font-weight: bold;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 35px;
}

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

.nav-link:hover {
    color: #90e0ef;
}

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

.main {
    padding: 80px 0;
}

.welcome, .inspiration, .destinations, .vision, .testimonials, .offer, .explore, .blog-content, .tips-content, .products-content, .cart-content, .cart-tips-content, .privacy-content, .terms-content {
    margin-bottom: 100px;
}

h2 {
    color: #0077b6;
    font-size: 2.8rem;
    margin-bottom: 40px;
}

h3 {
    color: #0077b6;
    font-size: 2rem;
    margin-bottom: 25px;
}

.inspiration-grid, .testimonials-grid, .tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.inspiration-item, .testimonial-item, .tips-grid li {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

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

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

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

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

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

.add-to-cart-btn {
    background: #00b894;
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 15px;
    cursor: pointer;
    transition: background 0.3s;
}

.add-to-cart-btn:hover {
    background: #009670;
}

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

#lead-form input, #lead-form textarea {
    width: 100%;
    margin: 20px 0;
    padding: 20px;
    border: 1px solid #90e0ef;
    border-radius: 15px;
}

#lead-form button {
    background: #0077b6;
    color: #fff;
    border: none;
    padding: 20px 40px;
    border-radius: 15px;
    cursor: pointer;
    transition: background 0.3s;
}

#lead-form button:hover {
    background: #023e8a;
}

.footer {
    background: #0a2b5c;
    color: #fff;
    text-align: center;
    padding: 60px 0;
}

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

.footer-link {
    color: #90e0ef;
    text-decoration: none;
}

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

.action-btn {
    background: #00b894;
    color: #fff;
    padding: 20px 40px;
    text-decoration: none;
    border-radius: 15px;
    display: inline-block;
    transition: background 0.3s;
}

.action-btn:hover {
    background: #009670;
}

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

    .menu-btn {
        display: block;
    }

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

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