body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

.container {
    width: 80%;
    max-width: 800px;
    margin: auto;
    background: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.logo {
    width: 200px;
    height: auto;
}

.title, .skills {
    text-align: center;
    margin: 10px 0;
}

h3 {
    margin-top: 20px;
}

label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
}

input[type="text"], input[type="email"], input[type="tel"], select {
    width: calc(100% - 20px);
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

input[type="submit"], input[type="reset"] {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

input[type="reset"] {
    background-color: #f44336;
}

input[type="submit"]:hover, input[type="reset"]:hover {
    background-color: #45a049;
}

input[type="reset"]:hover {
    background-color: #d32f2f;
}

/* Additional styles for new elements */
input[type="text"][readonly] {
    background-color: #e9e9e9;
    cursor: not-allowed;
}

h4 {
    margin-top: 20px;
    text-decoration: underline;
}
