/* Reset default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

/* Page background */
body {
    background-color: #97b1b7;
    color: #f8f2f2;
    line-height: 1.6;
    padding: 20px;
}

/* Main heading */
h1 {
    text-align: center;
    color: #1f3c88;
    font-size: 36px;
    margin-bottom: 5px;
}

/* Subtitle (Data Scientist text) */
body > h1 + text {
    text-align: center;
}

/* Section headings */
h2, h3, h4 {
    color: #1f3c88;
    margin-top: 20px;
    margin-bottom: 10px;
}

/* Image styling */
img {
    display: block;
    margin: 10px auto;
    border-radius: 10px;
    border: 3px solid #1f3c88;
}

/* Paragraphs */
p {
    background-color: #1f3c88;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    margin-bottom: 15px;
}

/* Highlighted skills */
mark {
    background-color: #f9f8f6;
    padding: 2px 6px;
    border-radius: 4px;
}

/* Links */
a {
    text-decoration: none;
    color: #fcfcfc;
    font-weight: bold;
}

a:hover {
    color: #ff9800;
}

/* Skills list */
p br {
    margin-bottom: 8px;
}

/* Contact section */
input[type="checkbox"] {
    margin-right: 5px;
}

.style-1 {
     background-color: #1f3c88;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    margin-bottom: 15px;
}

/* Form inputs */
input[type="text"],
input[type="email"],
input[type="password"] {
    width: 250px;
    padding: 8px;
    margin: 6px 0;
    border-radius: 5px;
    border: 1px solid #ccc;
}

/* Submit button */
input[type="submit"] {
    background-color:#1f3c88;
    color: rgb(254, 253, 255);
    padding: 8px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
}

input[type="submit"]:hover {
    background-color: #ff9800;
}

/* Horizontal line */
hr {
    border: none;
    height: 1px;
    background-color: #35238f;
    margin: 20px 0;
}
