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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.7;
    color: #333;
    background-color: #fff;
}

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

.header {
    background-color: #ff8c00;
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
}

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

.nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.nav ul li a:hover {
    color: #ffe4b5;
}

.main {
    display: flex;
    gap: 20px;
    padding: 2rem 0;
}

.sidebar {
    flex: 1;
    background-color: #f8f8f8;
    padding: 20px;
    border-radius: 8px;
}

.sidebar h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.sidebar ul {
    list-style: none;
}

.sidebar ul li {
    margin-bottom: 0.8rem;
}

.sidebar ul li a {
    color: #333;
    text-decoration: none;
}

.sidebar ul li a:hover {
    color: #f97316;
}

.content {
    flex: 3;
}

.hero, .why-us, .swimming-tips, .testimonials, .places, .eco, .offers, .products, .blog, .cart, .privacy, .terms {
    padding: 2rem 0;
}

.hero {
    text-align: center;
    background-color: #fef2e8;
    border-radius: 8px;
    padding: 3rem;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.btn {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(to right, #f97316, #ea580c);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    transition: transform 0.3s;
}

.btn:hover {
    transform: scale(1.05);
}

.why-us-content, .testimonials-content, .products-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.why-us-item, .testimonials-content div, .product-card {
    flex: 1 1 300px;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.why-us-item:hover, .testimonials-content div:hover, .product-card:hover {
    transform: translateY(-5px);
}

.product-card button {
    padding: 10px;
    background: linear-gradient(to right, #16a34a, #15803d);
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s;
}

.product-card button:hover {
    transform: scale(1.05);
}

.swimming-tips ul {
    list-style: none;
    margin-bottom: 2rem;
}

.swimming-tips ul li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.swimming-tips ul li strong {
    color: #f97316;
}

.blog-post {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.blog-post:hover {
    transform: translateY(-5px);
}

.cart-items div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: #fff;
    margin-bottom: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cart-items button {
    background: linear-gradient(to right, #dc2626, #b91c1c);
    color: #fff;
    border: none;
    padding: 8px 15px;
    border-radius: 8px;
    cursor: pointer;
}

.lead-form {
    max-width: 500px;
    margin: 2rem auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.lead-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.lead-form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
}

.lead-form button {
    width: 100%;
    padding: 10px;
    background: linear-gradient(to right, #16a34a, #15803d);
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s;
}

.lead-form button:hover {
    transform: scale(1.05);
}

.footer {
    background-color: #1e3a8a;
    color: #fff;
    padding: 2rem 0;
    text-align: center;
}

.footer ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer ul li a {
    color: #fff;
    text-decoration: none;
}

.footer ul li a:hover {
    color: #ffe4b5;
}

@media (max-width: 768px) {
    .main {
        flex-direction: column;
    }

    .sidebar {
        margin-bottom: 20px;
    }

    .nav ul {
        flex-direction: column;
        gap: 15px;
    }

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

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

    .why-us-content, .testimonials-content, .products-list {
        flex-direction: column;
    }
}