body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f9f9f9;
}

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

header {
    border-bottom: 2px solid #333;
    background: #344e33;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1500px;
    margin: 0 auto;
    padding: 10px 20px;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    padding: 10px 15px;
    border: 1px solid #ccc;
    margin-right: -1px;
}

.nav-links a.active {
    background-color: #eee;
}

.logo-placeholder {
    border: 1px solid #ffffff;
    padding: 10px 20px;
    font-weight: bold;
}

.hero {
    text-align: center;
    margin-bottom: 40px;
}

.hero-image-box {
    background: #e0e0e0;
    border: 1px solid #ccc;
    padding: 40px;
    margin-top: 20px;
    color: #666;

}

.hero-image-box img {
    max-width: 800px;
}

.section-title {
    width: 100%;
    text-align: left;
    border-bottom: 1px solid #333;
    line-height: 0.1em;
    margin: 30px 0 20px;
    font-size: 1.2rem;
}

.section-title span {
    background: #f9f9f9;
    padding-right: 10px;
}

.gear-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.gear-card {
    display: flex;
    border: 1px solid #ccc;
    background: #fff;
    min-height: 120px;
}

.gear-card.wide {
    width: 100%;
}

.image-placeholder {
    background: #eeeeee;
    width: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-right: 1px solid #ccc;
    font-size: 0.8rem;
    color: #888;
}

.image-placeholder img {
    margin-left: -20px;
    max-width: 200px;
    height: 200px;
}

.image-placeholderq {
    background: #eeeeee;
    width: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-right: 1px solid #ccc;
    font-size: 0.8rem;
    color: #888;
}

.image-placeholderq img {
    max-width: 200px;
    height: 200px;
}

.image-placeholdershoe {
    background: #eeeeee;
    width: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-right: 1px solid #ccc;
    font-size: 0.8rem;
    color: #888;
}

.image-placeholdershoe img {
    margin-top: -20px;
    max-width: 200px;
    height: 200px;
}


.gear-info {
    padding: 10px;
    flex: 1;
}

.gear-info ul {
    margin: 0;
    padding-left: 20px;
    font-size: 1rem;
    margin-left: 30px;
}

.tips-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

footer {
    margin-top: 50px;
    border-top: 2px solid #333;
    background: #344e33;
    padding: 20px 0;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    max-width: 900px;
    margin: 0 auto;
    font-size: 0.9rem;
    color: white;
}

@media (max-width: 600px) {
    .gear-grid, .tips-grid {
        grid-template-columns: 1fr;
    }
    nav {
        flex-direction: column;
        gap: 10px;
    }
}