/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background: #f8f9fa;
    color: #333;

}

img {
    display: block;
    border: 1px solid #333;
    margin: 0 auto;
    border-radius: 6px;
}

/* Header */
header {
    background: #304a61;
    color: white;
    text-align: center;
    padding: 60px 20px;
}

header h1 {
    font-size: 3em;
    font-weight: bold;
    margin: 0;
}

header p {
    font-size: 1.3em;
}

/* Navigation */
nav {
    background: #333;
    display: flex;
    justify-content: center;
    padding: 15px 0;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 1.2em;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

nav ul li a:hover {
    color: #c0ae88;
}

/* Sections */
section {
    max-width: 950px;
    margin: 40px auto;
    padding: 30px;
    background: white;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

/* Lists */
ul {
    list-style-type: none; /* Removes default bullets */
}

ul li::before {
    content: "◆"; /* Adds a diamond */
    color: #333; /* Adjust color */
    font-size: 1.1em; /* Adjust size */
    margin-right: 12px; /* Adds space between diamond and text */
}




/* Buttons */
.button {
    display: inline-block;
    padding: 12px 24px;
    background: #304a61;
    color: white;
    font-size: 1.2em;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: background 0.3s ease-in-out, transform 0.2s;
}

.button:hover {
    background: #405a71;
    transform: scale(1.05);
}

/* Footer */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 25px;
    font-size: 1.1em;
    margin-top: 50px;
}
