* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f4f4f4;
}

/* Top Nav */
.top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: #ffffff;
}

.top-nav nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #333;
}

.phone {
    color: #f4a623;
    font-weight: bold;
}

/* Category Bar */
.category-bar {
    background: #222;
    padding: 10px 40px;
}

.category-bar a {
    color: white;
    margin-right: 25px;
    text-decoration: none;
}

/* Hero Section */
.hero {
    display: flex;
    min-height: 500px;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image {
    flex: 1;
}

.hero-content {
    flex: 1;
    background: #1f1f1f;
    color: white;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content h1 {
    font-size: 40px;
    margin-bottom: 20px;
}

.hero-content p {
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn {
    background: #f4a623;
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    display: inline-block;
    width: fit-content;
}

.btn-outline {
    margin-top: 20px;
    display: inline-block;
    padding: 10px 18px;
    border: 2px solid #f4a623;
    color: #f4a623;
    text-decoration: none;
}

/* About Section */
.about {
    text-align: center;
    padding: 80px 20px;
    background: #ffffff;
}

.about h2 {
    font-size: 30px;
    margin-bottom: 20px;
}

.about p {
    max-width: 600px;
    margin: auto;
    line-height: 1.6;
}

/* Mobile */
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
    }
}
