body {
    font-family: 'Georgia', serif;
    margin: 0;
    padding: 0;
    background-color: #0a0a23;
    color: #fff;
    line-height: 1.6;
    text-align: center;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #1b1b32;
}

.logo {
    height: 50px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1em;
}

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

.hero {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.hero h1 {
    font-size: 3.5em;
    color: #ffd700;
    margin: 0;
    text-shadow: 2px 2px 4px #000;
}

.hero p {
    font-size: 1.5em;
    color: #fff;
    margin: 10px 0;
    text-shadow: 1px 1px 3px #000;
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ffd700;
    color: #0a0a23;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #e6c200;
}

.about, .services, .portfolio, .testimonials, .contact, .blog {
    padding: 50px 20px;
    background-color: #1b1b32;
}

h2 {
    font-size: 2.5em;
    color: #ffd700;
    margin-bottom: 20px;
}

.service-grid, .portfolio-grid, .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-item, .portfolio-item, .testimonial-item {
    background-color: #2a2a4a;
    padding: 20px;
    border-radius: 10px;
}

.portfolio-item {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.testimonial-item p {
    font-style: italic;
    margin-bottom: 10px;
}

.testimonial-item cite {
    font-weight: bold;
}

form {
    max-width: 600px;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

input, textarea {
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #fff;
    color: #0a0a23;
}

textarea {
    height: 100px;
}

footer .footer-content {
    padding: 20px;
    background-color: #0a0a23;
    font-size: 0.9em;
}