/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f2f9ff;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    padding: 20px 0;
}

/* Header */
header {
    background: #023e8a;
    color: #4AFFFE;
    padding: 40px 0;
    text-align: center;
}

header h1 {
    font-size: 2.8em;
    margin-bottom: 10px;
}

header .tagline {
    font-size: 1.2em;
    font-style: italic;
}

/* Sections */
section {
    padding: 50px 0;
}

h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #023e8a;
}

/* About Section */
.about ul {
    list-style-type: disc;
    margin-left: 40px;
}

/* Services Grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.service {
    background: #caf0f8;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.service:hover {
    transform: translateY(-5px);
}

/* Fish Section */
.fish p {
    text-align: center;
    font-size: 1.1em;
}

/* Contact Section */
.contact ul {
    list-style: none;
    text-align: center;
}

.contact ul li {
    margin: 10px 0;
    font-size: 1.1em;
}

/* Footer */
footer {
    background: #023e8a;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 30px;
}

/* Header Logo + Title Alignment */
.header-flex {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    height: 150px;
    width: auto;
    border-radius: 8px;
}
