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

/* Body & Font */
body {
    font-family: 'Arial', sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    padding: 0 20px;
}

/* Header Image */
.full-width-header {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    margin-bottom: 20px;
}

/* Content Container */
.content-container {
    max-width: 1200px;
    margin: auto;
}

/* Headings */
h1, h2, h3 {
    color: #FFCC09;
    margin: 20px 0;
}

/* Paragraphs */
p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Floated Images */
.float-left, .float-center, .float-right {
    width: 400px;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0,0,0,0.7);
    margin: 0 20px 20px 0;
}

.float-center {
    display: block;
    margin: 0 auto 20px auto;
    float: none;
}

.float-right {
    float: right;
    margin: 0 0 20px 20px;
}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/* Image Gallery Row */
.image-gallery {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    justify-content: center;
    margin: 30px 0;
}

.image-gallery .content-image {
    width: 200px;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.5);
    object-fit: cover;
}

/* CTA Section */
.cta {
    text-align: center;
    background-color: #1a001a;
    padding: 40px 20px;
    margin-top: 40px;
}

.cta h2 {
    color: #FFCC09;
}

.cta p {
    color: #FFCC09;
    font-weight: bold;
}

/* Subscribe Form */
.subscribe-section input[type="email"],
.subscribe-form input[type="email"] {
    padding: 12px;
    width: 250px;
    border: none;
    border-radius: 4px;
    margin-right: 10px;
    font-size: 1rem;
}

.subscribe-section button,
.subscribe-form button {
    padding: 12px 20px;
    background-color: #FFCC09;
    color: #000000;
    border: none;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
}

.subscribe-section button:hover,
.subscribe-form button:hover {
    background-color: #e6b800;
}

/* Footer */
footer {
    background-color: #1a001a;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
    color: #ffffff;
}
