/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
}
a {
  text-decoration: none;
  color: #fff;
  font-weight: 700;
}
#contact p {
  font-size: 20px;
}
.navigation {
  border-bottom: 5px solid #484848;
  padding-bottom: 20px;
  
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    background: #d3d3d3;
    color: #353535;
    padding: 60px 20px;
    text-align: center;
    padding-bottom:100px;
    background-image: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url('dbsi-bg.png');
	background-repeat: no-repeat;
	background-size: cover;
}

.hero-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.hero .logo {
    max-width: 180px;
}

.navigation a {
    margin: 0 15px;
    color: #353535;
    text-decoration: none;
    font-weight: bold;
}

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

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
	background-color: rgba(1,129,200,0.8);
	padding: 20px;
	border-radius: 5px;
	color: #fff;
}

.cta-button {
    background: white;
    color: #0181c8;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 2px 18px 0px;
}

/* About Section */
.about {
    background: #82b7dc;
    padding: 60px 20px;
    text-align: center;
}

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

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.about-item {
  background: #fff;
  color: #333;
  padding: 20px;
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 2px 18px 0px;
}
#about {
  padding-bottom: 120px;
}
/* Services Section */
.services {
    background: #e2e2e2;
    padding: 60px 20px;
    text-align: center;
}

.services h2 {
    font-size: 2rem;
    margin-bottom: 40px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding-bottom:100px;
}

.service-item ul {
	padding-left: 0;
}

.service-item li {
	list-style-type: none;
	font-weight: bold;
}

.service-item {
    background: #0181c8;
    color: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 2px 18px 0px;
}

/* Contact Section */
.contact {
    background: #292929;
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.contact a {
    color: #82b7dc;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: none;
}

.contact-form button {
    background: #0181c8;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-content p {
        font-size: 1rem;
    }

}
