You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
309 lines
4.4 KiB
309 lines
4.4 KiB
/* Reset and Base Styles */ |
|
* { |
|
margin: 0; |
|
padding: 0; |
|
box-sizing: border-box; |
|
} |
|
|
|
body { |
|
font-family: Arial, sans-serif; |
|
line-height: 1.6; |
|
color: #fff; |
|
} |
|
|
|
.container { |
|
width: 90%; |
|
max-width: 1200px; |
|
margin: 0 auto; |
|
padding: 0 20px; |
|
} |
|
|
|
a { |
|
text-decoration: none; |
|
color: #333; |
|
} |
|
|
|
ul { |
|
list-style: none; |
|
} |
|
|
|
/* Header Styles */ |
|
header { |
|
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); |
|
position: sticky; |
|
top: 0; |
|
z-index: 100; |
|
background-color: #2A7B9B; |
|
} |
|
|
|
header .container { |
|
display: flex; |
|
justify-content: space-between; |
|
align-items: center; |
|
padding: 20px; |
|
} |
|
|
|
.logo h1 { |
|
font-size: 24px; |
|
color: #ffffff; |
|
} |
|
|
|
nav ul { |
|
display: flex; |
|
} |
|
|
|
nav ul li { |
|
margin-left: 20px; |
|
} |
|
|
|
nav ul li a { |
|
padding: 5px; |
|
transition: color 0.3s; |
|
} |
|
|
|
nav ul li a:hover { |
|
color: #3498db; |
|
} |
|
|
|
/* Button Styles */ |
|
.btn { |
|
display: inline-block; |
|
background-color: #ccdd33; |
|
font-weight: bold; |
|
color: #000; |
|
padding: 10px 20px; |
|
border: none; |
|
border-radius: 4px; |
|
cursor: pointer; |
|
transition: background-color 0.3s; |
|
} |
|
|
|
.btn:hover { |
|
background-color: #2980b9; |
|
} |
|
|
|
/* Hero Section */ |
|
.hero { |
|
padding: 80px 0; |
|
background-color: #fff; |
|
text-align: center; |
|
} |
|
|
|
.hero h1 { |
|
font-size: 36px; |
|
margin-bottom: 20px; |
|
color: #ffb630; |
|
} |
|
|
|
.hero p { |
|
font-size: 18px; |
|
margin-bottom: 30px; |
|
max-width: 700px; |
|
margin-left: auto; |
|
margin-right: auto; |
|
} |
|
|
|
/* Features Section */ |
|
.features { |
|
padding: 80px 0; |
|
background-color: #2A7B9B; |
|
} |
|
|
|
.features h2 { |
|
text-align: center; |
|
margin-bottom: 40px; |
|
color: #ffb630; |
|
} |
|
|
|
.feature-grid { |
|
display: grid; |
|
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); |
|
gap: 30px; |
|
} |
|
|
|
.feature { |
|
padding: 20px; |
|
border-radius: 5px; |
|
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); |
|
transition: transform 0.3s; |
|
} |
|
|
|
.feature:hover { |
|
transform: translateY(-5px); |
|
} |
|
|
|
.feature h3 { |
|
margin-bottom: 15px; |
|
color: #ccdd33; |
|
} |
|
|
|
/* How It Works Section */ |
|
.how-it-works { |
|
padding: 80px 0; |
|
} |
|
|
|
.how-it-works h2 { |
|
text-align: center; |
|
margin-bottom: 40px; |
|
color: #2c3e50; |
|
} |
|
|
|
.steps { |
|
display: grid; |
|
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); |
|
gap: 30px; |
|
} |
|
|
|
.step { |
|
text-align: center; |
|
padding: 20px; |
|
} |
|
|
|
.step-number { |
|
display: inline-block; |
|
width: 40px; |
|
height: 40px; |
|
background-color: #3498db; |
|
color: #fff; |
|
border-radius: 50%; |
|
line-height: 40px; |
|
margin-bottom: 15px; |
|
font-weight: bold; |
|
} |
|
|
|
.step h3 { |
|
margin-bottom: 15px; |
|
color: #2c3e50; |
|
} |
|
|
|
/* Submit Project Section */ |
|
.submit-project { |
|
padding: 80px 0; |
|
} |
|
|
|
.submit-project h2 { |
|
text-align: center; |
|
margin-bottom: 40px; |
|
color: #2c3e50; |
|
} |
|
|
|
form { |
|
max-width: 700px; |
|
margin: 0 auto; |
|
} |
|
|
|
.form-group { |
|
margin-bottom: 20px; |
|
} |
|
|
|
label { |
|
display: block; |
|
margin-bottom: 5px; |
|
font-weight: bold; |
|
} |
|
|
|
input, |
|
textarea { |
|
width: 100%; |
|
padding: 10px; |
|
border: 1px solid #ddd; |
|
border-radius: 4px; |
|
font-size: 16px; |
|
} |
|
|
|
textarea { |
|
resize: vertical; |
|
} |
|
|
|
.note { |
|
font-size: 14px; |
|
color: #777; |
|
margin-top: 5px; |
|
} |
|
|
|
/* Footer Styles */ |
|
footer { |
|
background-color: #2c3e50; |
|
color: #fff; |
|
padding: 50px 0 20px; |
|
} |
|
|
|
.footer-content { |
|
display: grid; |
|
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); |
|
gap: 30px; |
|
margin-bottom: 30px; |
|
} |
|
|
|
.footer-logo h2 { |
|
margin-bottom: 10px; |
|
} |
|
|
|
.footer-links h3, |
|
.footer-contact h3 { |
|
margin-bottom: 15px; |
|
font-size: 18px; |
|
} |
|
|
|
.footer-links ul li { |
|
margin-bottom: 10px; |
|
} |
|
|
|
.footer-links ul li a { |
|
color: #ddd; |
|
transition: color 0.3s; |
|
} |
|
|
|
.footer-links ul li a:hover { |
|
color: #3498db; |
|
} |
|
|
|
.footer-contact p { |
|
margin-bottom: 10px; |
|
} |
|
|
|
.footer-bottom { |
|
text-align: center; |
|
padding-top: 20px; |
|
border-top: 1px solid rgba(255, 255, 255, 0.1); |
|
} |
|
|
|
/* Responsive Styles */ |
|
@media (max-width: 768px) { |
|
header .container { |
|
flex-direction: column; |
|
} |
|
|
|
nav ul { |
|
margin-top: 20px; |
|
} |
|
|
|
nav ul li { |
|
margin: 0 10px; |
|
} |
|
|
|
.hero h1 { |
|
font-size: 28px; |
|
} |
|
|
|
.hero p { |
|
font-size: 16px; |
|
} |
|
} |
|
|
|
@media (max-width: 480px) { |
|
nav ul { |
|
flex-wrap: wrap; |
|
justify-content: center; |
|
} |
|
|
|
nav ul li { |
|
margin: 5px 10px; |
|
} |
|
|
|
.feature-grid, |
|
.steps, |
|
.footer-content { |
|
grid-template-columns: 1fr; |
|
} |
|
}
|
|
|