body {
    font-family: 'Raleway', sans-serif;
    margin: 0;
    padding: 0;
    color: #03180d;
    background-color: #fff;
}
header {
    text-align: center;
    padding: 20px;
    background-color: #ffffff;
}
.logo img {
    width: 200px;
}
.hero {
    position: relative;
    text-align: center;
    color: white;
}
.hero-bg {
    width: 100%;
    height: auto;
}
.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(84, 185, 72, 0.85);
    padding: 20px;
    border-radius: 10px;
}
.hero-text h1 {
    font-size: 48px;
    margin: 0;
}
.hero-text h2 {
    font-size: 24px;
    margin-top: 10px;
}
.content {
    max-width: 800px;
    margin: 40px auto;
    font-size: 18px;
    line-height: 1.6;
}
.content a {
    color: #54b948;
    text-decoration: none;
    font-weight: bold;
}
footer {
    background-color: #005953;
    color: #fff;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 30px;
    gap: 20px;
    text-align: center;
}
.footer-left, .footer-center, .footer-right {
    font-size: 14px;
}
.gpur-green {
    color: #54b948;
}
.footer-bottom {
    grid-column: 1 / 4;
    margin-top: 20px;
    font-size: 12px;
    color: #ccc;
}
a { color: #54b948; }
