/* HEADER */
header {
    background-color: #2c6d8d;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    color: white;
    font-size: 2rem;
    text-align: center;
    margin: 0 auto;
}

header img {
    width: 80px;
}

/* NAVIGATION */
nav {
    background-color: #b42727;
    padding: 10px 0;
    text-align: center;
}

nav a {
    color: white;
    font-weight: bold;
    text-decoration: none;
    margin: 0 20px;
    padding: 10px;
}

nav a:hover {
    text-decoration: underline;
}
/* MAIN CONTAINER */
main {
    max-width: 1100px;
    margin: 30px auto;
    padding: 20px;
}

/* HERO SECTION */
.hero-section {
    text-align: center;
    margin-bottom: 40px;
}

.hero-images {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.hero-images img {
    width: 30%;
    max-width: 300px;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0px 3px 8px rgba(0,0,0,0.2);
}

/* INTRO TEXT */
.intro-text {
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
    max-width: 900px;
    margin: 20px auto;
}
footer {
    background-color: #b42727;
    color: white;
    text-align: center;
    padding: 15px 0;
    margin-top: 40px;
    font-size: 0.9rem;
}
/* ABOUT PAGE LAYOUT */
.about-section {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
}

.about-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-top: 20px;
    flex-wrap: wrap; 
}

.about-text {
    flex: 1;
    min-width: 280px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.about-image img {
    width: 350px;
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.15);
}

.subscribe-layout {
    display: flex;
    gap: 60px;                 
    margin: 50px auto;
    align-items: center;       
    max-width: 1100px;
}

/* FORM COLUMN */
.subscribe-form {
    flex: 1;
}

.subscribe-form form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.subscribe-form label {
    font-weight: bold;
}

.subscribe-form input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

/* SUBMIT BUTTON */
.subscribe-btn {
    background-color: #b22222;
    color: white;
    padding: 12px;
    border-radius: 6px;
    border: none;
    grid-column: span 2;
    margin-top: 15px;
    cursor: pointer;
}

.subscribe-btn:hover {
    background-color: #8f1b1b;
}

/* IMAGE COLUMN */
.subscribe-images {
    flex: 1;
    display: flex;
    justify-content: center;
    gap: 30px;                 
}

/* IMAGES */
.subscribe-images img {
    width: 280px;
    height: 280px;
    object-fit: contain;
    border-radius: 12px;
    background-color: #f2f2f2;
    padding: 10px;
}
/* TRAINING PAGE LAYOUT */
.training-layout {
    display: flex;
    gap: 40px;
    max-width: 1100px;
    margin: 50px auto;
    padding: 20px;
    align-items: center;
}

/* IMAGE SIDE */
.training-left {
    flex: 1;
    display: flex;
    justify-content: center;
}

.training-left img {
    max-width: 100%;
    width: 100%;
    max-height: 320px;   
    height: auto;
    object-fit: contain;
    border-radius: 12px;
}

/* TEXT SIDE */
.training-right {
    flex: 1;
    font-size: 1.1rem;
    line-height: 1.6;
}
.safety-content {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
}

.safety-content h2 {
    text-align: center;
    margin-bottom: 20px;
}

.safety-intro {
    text-align: center;
    line-height: 1.7;
    margin-bottom: 30px;
}

.safety-list {
    padding-left: 40px;
}

.safety-list li {
    margin-bottom: 15px;
    line-height: 1.6;
}
.form-box {
    background-color: #f2f2f2;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #ccc;
}

.mc-field-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.mc-field-group label {
    margin-bottom: 5px;
    font-weight: bold;
}

.mc-field-group input {
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #bbb;
    font-size: 1rem;
}
