body {
    background-color: #0c1a2c;
    color: #c0c0c0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
}

header {
    padding: 20px;
}

#logo {
    width: 350px;
    margin-bottom: 20px;
}

h1 {
    color: #ffffff;
    margin-top: 0;
    font-size: 3em;
}

a {
    color: #4a90e2;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

footer {
    padding: 20px;
    margin-top: 30px;
    font-size: 0.9em;
}

main {
    width: 80%;
    max-width: 960px;
    margin: 0 auto;
}

section {
    background-color: #1a2a3a;
    border: 1px solid #3a4a5a;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
}

#hero {
    padding: 0;
    background-color: transparent;
    border: none;
}

.hero-tiles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 10px;
}

.hero-tile {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    color: #ffffff;
    text-decoration: none;
}

.hero-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hero-tile:hover img {
    transform: scale(1.05);
}

.hero-tile-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px;
}

.hero-tile h3 {
    margin: 0 0 10px 0;
    font-size: 1.8em;
}

.hero-tile p {
    margin: 0;
    font-size: 1em;
}

h2 {
    font-size: 2.2em;
    color: #ffffff;
}

#services ul {
    list-style: none;
    padding: 0;
}

#services li {
    background-color: #0c1a2c;
    margin: 5px 0;
    padding: 10px;
    border-radius: 4px;
}

.iframe-container {
    width: 100%;
    height: 600px; /* Adjust height as needed */
    border: 1px solid #3a4a5a;
    border-radius: 4px;
    overflow: hidden; /* Ensures the corners are rounded */
}

#blog iframe {
    width: 100%;
    height: 100%;
    border: none;
}
