* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Body */
body {
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

/* Header / Hero */
header {
    background-color: #1e3d59;
    color: white;
    padding: 50px 20px;
    text-align: center;
}

header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

header nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
}

header nav a:hover {
    text-decoration: underline;
}

header button {
    background-color: #ff3366;
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 1em;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 15px;
}

header button:hover {
    background-color: #ff6699;
}

/* Sections */
section {
    padding: 50px 20px;
    text-align: center;
}

section h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #1e3d59;
}

/* About Section */
#about img {
    margin-top: 20px;
    width: 150px;
    border-radius: 10px;
}

/* Boxes for Services / Projects */
.box {
    display: inline-block;
    width: 220px;
    height: 120px;
    background-color: #66ccff;
    margin: 15px;
    text-align: center;
    line-height: 120px;
    color: white;
    font-weight: bold;
    border-radius: 10px;
    transition: transform 0.3s, background-color 0.3s;
}

.box:hover {
    background-color: #3399ff;
    transform: scale(1.05);
}

/* Contact Button */
#contact button {
    background-color: #1e3d59;
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 1em;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 15px;
}

#contact button:hover {
    background-color: #335577;
}

/* Footer */
footer {
    background-color: #1e3d59;
    color: white;
    padding: 20px;
    text-align: center;
    margin-top: 50px;
}