* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding: 20px;
    background-color: #f4f4f4;
    text-align: center;
}

header {
    background-color: #333;
    color: white;
    padding: 40px 20px;
}

header a {
    background-color: #ff8000;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    margin-top: 20px;
}

#profile-picture {
    margin: 20px auto;
    max-width: 300px;
    text-align: center;
}
.option-picture {
    width: 50%; /* Make the image responsive to the container */
    height: auto; /* Maintain aspect ratio */
    border-radius: 0; /* Remove round edges */
    max-width: 300px; /* Limit the maximum width of the image */
    margin-bottom: 20px; /* Add spacing below the image */
}
.profile-image {
    width: 100%;
    height: auto;
    border-radius: 50%;
}
section {
    margin: 40px 0;
}
section, .service {
    border: 2px solid #fff;
    padding: 20px;
    margin-bottom: 20px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.service {
    background-color: #fff;
    padding: 20px;
    margin: 20px 0;
    border-radius: 5px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

#contact form {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

#contact input, #contact textarea {
    margin: 10px 0;
    padding: 10px;
    border: 1px solid #ddd;
    width: 100%;
}

button {
    background-color: #ff8000;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

footer {
    margin-top: 40px;
    padding: 20px;
    background-color: #333;
    color: white;
}

footer a {
    color: white;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    header h1 {
        font-size: 24px;
    }

    header p {
        font-size: 18px;
    }

    section h2 {
        font-size: 22px;
    }
}
footer {
    margin-top: 40px;
    padding: 20px;
    background-color: #333;
    color: white;
    text-align: center;
}

footer a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}

footer a:hover {
    text-decoration: underline;
}