* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #b3b2b2;
    color: #080808;
}

header {
    background-color: #58d1e6;
    color: rgb(14, 13, 13);
    padding: 20px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

header .logo {
    font-size: 24px;
    font-weight: bold;
    margin-left: 30px;
    display: inline-block;
}

header nav ul {
    list-style-type: none;
    display: inline-block;
    margin-right: 30px;
}

header nav ul li {
    display: inline;
    margin-left: 20px;
}

header nav ul li a {
    color: rgb(14, 13, 13);
    text-decoration: none;
    font-size: 18px;
    position: relative;
    padding: 10px 15px;
    transition: color 0.3s, transform 0.3s;
}

header nav ul li a:hover {
    color: #fa0606;
    transform: scale(1.1);
}

.section {
    padding: 100px 0;
    text-align: center;
}

.home {
    background-color: #10013bbd;
    color: rgb(15, 15, 15);
}

.about, .services, .contact {
    background-color: #87cac1;
    color: #070707;
}

h1, h2, h3 {
    margin-bottom: 20px;
}

h1 {
    font-size: 40px;
    font-weight: bold;
}

h2 {
    font-size: 30px;
    font-weight: 600;
}

h3 {
    font-size: 24px;
    font-weight: 500;
}

p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn {
    background-color: #080808;
    padding: 10px 20px;
    text-decoration: none;
    color: rgb(250, 252, 250);
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #e67e22;
}

.service-list {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.service {
    background-color: #54026d;
    padding: 30px;
    width: 250px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(3, 207, 13, 0.918);
    transition: transform 0.3s;
}

.service:hover {
    transform: translateY(-10px);
}

form {
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

form input, form textarea {
    padding: 12px;
    margin-bottom: 10px;
    border: 2px solid #3c0347;
    border-radius: 5px;
    font-size: 16px;
}

form button {
    background-color: #3498db;
    color: rgb(143, 18, 168);
    padding: 15px;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

form button:hover {
    background-color: #2980b9;
}

footer {
    background-color: #479aca;
    color: rgb(88, 41, 107);
    padding: 20px;
    text-align: center;
    position: relative;
    bottom: 0;
    width: 100%;
}

footer p {
    font-size: 16px;
}
a{
    text-decoration: none;
    color: white;
}