body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    
     
}
.header {
    background: linear-gradient(to right, #1192c5, #17f1f8);
    color: white;
    padding: 20px 10%;
    text-align: center;
}
.header h1 {
    margin: 0;
    font-size: 2.5em;
}
.header p {
    margin: 10px 0 0;
}
.main-nav {
    background: #333;
    padding: 10px 10%;
    text-align: center;
}
.main-nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    padding: 8px 12px;
    display: inline-block;
}
.main-nav a:hover {
    background: #17f1f8;
    border-radius: 4px;
}
.hero {
    background: url('https://lh4.googleusercontent.com/bc2G5Zs6og83nWxYHQviLk8g-fT6d-191Y6jnfgZAcEc-HwPrhQD32QU_V6emeLNX4dYvJMeVQ4wQC7ysAe2AHQnn7b7NjKBAaxAu_m_BYdAwhK17SxBFVYVNRDPZYrCXA=w1280') no-repeat center center/cover;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}
.hero div {
    position: relative;
    z-index: 2;
}
.hero h1 {
    font-size: 4em;
    margin: 0;
}
.hero p {
    font-size: 1.5em;
}
.services {
    padding: 40px 10%;
    text-align: center;
}
.services h2 {
    margin-bottom: 20px;
    font-size: 2em;
    color: #17f1f8;
}
.services .service-item {
    display: inline-block;
    width: 30%;
    margin: 1.5%;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.services .service-item h3 {
    margin-top: 0;
    color: #333;
}
.services .service-item p {
    color: #555;
}
.contact {
    background: #f4f4f4;
    padding: 40px 10%;
    text-align: center;
}
.contact form {
    max-width: 500px;
    margin: 0 auto;
}
.contact input, .contact textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
}
.contact button {
    padding: 10px 20px;
    background: #2ae7ee;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.contact button:hover {
    background: #1192c5;
}
footer {
    background: #333;
    color: white;
    padding: 10px 0;
    text-align: center;
}
.large-button {
    padding: 20px 40px;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    background-color: #17f1f8;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }

  .large-button:hover {
    background-color: #1192c5;
    transform: scale(1.05);
  }

  .large-button:active {
    background-color: #003f7f;
    transform: scale(0.98);
  }