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

body {
    font-family: 'Helvetica Neue', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f9f9f9; /* Light background for contrast */
}

.container {
    max-width: 1200px; /* Optimal width for large screens */
    margin: 0 auto; /* Center the container */
    padding: 20px; /* Space inside the container */
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to right, #ff7200, #ffb100);
    color: #fff;
    padding: 15px 40px; /* Padding for navbar */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25); /* Shadow for depth */
    margin-bottom: 20px; /* Space below navbar */
}

.logo {
    font-size: 24px; /* Logo font size */
    font-weight: bold;
}

.menu {
    display: flex; /* Ensure the menu items are in a row */
}

.menu li {
    margin: 0 15px; /* Consistent spacing between menu items */
    list-style: none; /* Remove bullet points */
}

.menu li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px; /* Font size for menu items */
    transition: color 0.3s ease; /* Smooth transition for text color change */
}

.menu li a:hover {
    color: #ffd700; /* Lighten color on hover */
}

.hero {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 60px 20px; /* Padding for hero section */
    color: #fff; /* Ensure text is white for visibility */
}

.background-video {
    position: fixed; /* Changed to fixed to cover the entire viewport */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures video covers the area */
    z-index: -1; /* Places it behind other content */
    filter: brightness(0.6); /* Darken video for better text contrast */
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 20px; /* Padding for content */
}

.hero-content h2 {
    font-size: 52px; /* Increased for emphasis */
    margin-bottom: 20px; /* Space below title */
    text-transform: uppercase; /* Bold style */
}

.hero-content p {
    font-size: 24px; /* Increased for readability */
    margin-bottom: 30px; /* Space below paragraph */
}

.content {
    margin: 60px 0; /* Space above and below content section */
}

.content h2 {
    text-align: center;
    color: #ff7200; /* Brand color */
    margin-bottom: 25px; /* Space below heading */
}

article {
    background: #fff; /* Article background */
    border-radius: 12px; /* Rounded corners */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1); /* Shadow for depth */
    margin: 20px 0; /* Space between articles */
    padding: 25px; /* Padding for articles */
}

.tip-image {
    max-width: 100%; /* Responsive image */
    border-radius: 12px; /* Rounded corners for images */
    margin-bottom: 15px; /* Space below images */
}

h3 {
    margin-bottom: 10px; /* Space below subheadings */
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column; /* Stack navbar items vertically */
        align-items: center; /* Center items */
    }

    .navbar .menu {
        margin-top: 10px; /* Space above menu */
    }

    .hero-content h2 {
        font-size: 32px; /* Responsive heading size */
    }

    .hero-content p {
        font-size: 18px; /* Responsive paragraph size */
    }

    article {
        margin: 10px 0; /* Less margin on smaller screens */
    }
}
