/* General Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: Arial, sans-serif; line-height: 1.6; color: #333; background: #f9f9f9; }
a { text-decoration: none; color: inherit; }

/* Header */
header { background: #111; color: #fff; padding: 1rem 0; }
header .nav { display: flex; justify-content: space-between; align-items: center; }
header .brand { display: flex; align-items: center; color: #fff; font-weight: bold; }
header .brand img { height: 50px; margin-right: 10px; }
header .menu a { margin: 0 10px; color: #fff; }
header .menu a.active, header .menu .btn { background: #0077cc; padding: 8px 15px; border-radius: 5px; }

/* Hero Section */
.hero { background: url('images/sample1.jpg') no-repeat center center/cover; height: 70vh; display: flex; justify-content: center; align-items: center; text-align: center; color: #fff; }
.hero-content { background: rgba(0,0,0,0.5); padding: 2rem; border-radius: 10px; }
.hero h1 { font-size: 2.5rem; margin-bottom: 1rem; }
.hero p { margin-bottom: 1.5rem; }
.btn { background: #0077cc; color: #fff; padding: 10px 20px; border-radius: 5px; }

/* Sections */
.section { padding: 3rem 1rem; }
.section h2 { text-align: center; margin-bottom: 2rem; font-size: 2rem; }

/* Cards */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; }
.card { background: #fff; padding: 1.5rem; border-radius: 10px; box-shadow: 0 2px 5px rgba(0,0,0,0.1); text-align: center; }

/* Gallery */
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; }
.gallery img { width: 100%; border-radius: 10px; }

/* Footer */
footer { background: #111; color: #fff; padding: 2rem 1rem; text-align: center; }
footer .brand { display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
footer .brand img { height: 40px; margin-right: 10px; }

/* Forms */
form { display: flex; flex-direction: column; max-width: 500px; margin: auto; }
form label { margin: 10px 0 5px; }
form input, form textarea { padding: 10px; border: 1px solid #ccc; border-radius: 5px; }
form button { margin-top: 15px; }
