/* General Section Styling */
section {
    margin: 20px auto;
    padding: 20px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
}

h1 {
    font-size: 28px;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
}

/* Intro Section Styling */
#battle-strategy-intro {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

#battle-strategy-intro p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

/* Going First and Going Second Sections */
#going-first, #going-second {
    padding: 25px;
    background-color: #fdfdfd;
    border: 1px solid #eaeaea;
    margin-top: 20px;
}

#going-first h1, #going-second h1 {
    color: #ff5500; /* Distinctive color for titles */
    text-align: left;
    font-size: 24px;
    margin-bottom: 10px;
}

#going-first .content, #going-second .content {
    font-size: 16px;
    color: #444;
    line-height: 1.8;
}

#going-first p, #going-second p {
    margin-bottom: 15px;
}

#going-first strong, #going-second strong {
    color: #ff5500;
    font-weight: bold;
}

/* Footer Styling */
footer {
    text-align: center;
    padding: 15px 0;
    background-color: #f9f9f9;
    color: #666;
    font-size: 14px;
    border-top: 1px solid #e0e0e0;
    margin-top: 40px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    section {
        padding: 15px;
    }

    h1 {
        font-size: 24px;
    }

    p {
        font-size: 14px;
    }
}
