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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
}

header {
    background: #D32F2F;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo img {
    height: 60px;
}

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

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #FFD700;
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-size: 18px;
}

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

.section {
    display: flex;
    align-items: center;
    padding: 100px 50px;
    min-height: 100vh;
}

.section.reverse {
    flex-direction: row-reverse;
}

.content {
    flex: 1;
    padding: 20px;
}

.content h1 {
    font-family: 'Cinzel', serif;
    font-size: 36px;
    color: #D32F2F;
    margin-bottom: 20px;
}

.content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.btn {
    background: #FFD700;
    color: #D32F2F;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn:hover {
    background: #D32F2F;
    color: #FFD700;
}

.image {
    flex: 1;
}

.image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.contact {
    background: #D32F2F;
    color: #FFD700;
    text-align: center;
    flex-direction: column;
}

.contact h1 {
    color: #FFD700;
}

.placeholder {
    background: #fff;
    color: #D32F2F;
    text-align: center;
    flex-direction: column;
}

footer {
    background: #D32F2F;
    color: #FFD700;
    text-align: center;
    padding: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section {
        flex-direction: column;
        padding: 50px 20px;
    }

    .section.reverse {
        flex-direction: column;
    }

    header {
        flex-direction: column;
    }

    nav ul {
        margin-top: 20px;
        flex-direction: column;
        text-align: center;
    }

    nav ul li {
        margin: 10px 0;
    }

    .content h1 {
        font-size: 28px;
    }

    .content p {
        font-size: 16px;
    }
}