/* General Styles */
body {
font-family: ‘Roboto’, sans-serif;
margin: 0;
padding: 0;
line-height: 1.6;
color: #333;
}
.container {
width: 90%;
max-width: 1200px;
margin: 0 auto;
}
/* Header Styles */
header {
background: #333;
color: #fff;
padding: 20px 0;
}
header .logo h1 {
margin: 0;
font-size: 24px;
}
nav ul {
list-style: none;
padding: 0;
margin: 0;
display: flex;
justify-content: flex-end;
}
nav ul li {
margin: 0 15px;
}
nav ul li a {
color: #fff;
text-decoration: none;
font-weight: bold;
}
/* Hero Section */
#hero {
background: url(‘images/hero-bg.jpg’) no-repeat center center/cover;
color: #fff;
padding: 100px 0;
text-align: center;
}
#hero h2 {
font-size: 48px;
margin-bottom: 20px;
}
#hero p {
font-size: 18px;
margin-bottom: 30px;
}
#hero .btn {
background: #ff6f61;
color: #fff;
padding: 10px 20px;
text-decoration: none;
border-radius: 5px;
font-weight: bold;
}
/* Featured Section */
#featured {
padding: 50px 0;
text-align: center;
}
#featured h2 {
font-size: 36px;
margin-bottom: 40px;
}
.grid {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
}
.card {
background: #f4f4f4;
margin: 10px;
padding: 20px;
width: 30%;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
text-align: left;
}
.card img {
max-width: 100%;
height: auto;
margin-bottom: 15px;
}
.card h3 {
font-size: 24px;
margin-bottom: 10px;
}
.card p {
font-size: 16px;
margin-bottom: 15px;
}
.card .read-more {
color: #ff6f61;
text-decoration: none;
font-weight: bold;
}
/* Footer Styles */
footer {
background: #333;
color: #fff;
padding: 20px 0;
text-align: center;
}
footer .social-links {
list-style: none;
padding: 0;
margin: 10px 0 0;
}
footer .social-links li {
display: inline;
margin: 0 10px;
}
footer .social-links li a {
color: #fff;
text-decoration: none;
}