/* File name: market.css */
/* Version: 2024-10-13_v1.2 */
/* Changelog:
- 2024-10-13_v1.0: Created initial version for market.html styling, designed to provide a professional and attractive appearance for the market section.
- 2024-10-13_v1.1: Updated to generalize section styling for multiple child templates.
- 2024-10-13_v1.2: Updated class names to avoid conflicts by using unique identifiers for each section. */

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
    margin: 0;
    padding: 0;
}

.section_market {
    background-color: #fff;
    padding: 40px;
    max-width: 1000px;
    margin: 40px auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.section_market_h2 {
    color: #2c3e50;
    font-size: 2em;
    margin-bottom: 20px;
    border-bottom: 2px solid #2c3e50;
    padding-bottom: 10px;
}

.section_market_p {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

.section_market_image-placeholder {
    text-align: center;
    margin-bottom: 30px;
}

.section_market_image-placeholder img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Styling for links within the section */
a {
    color: #3498db;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Button styles for future interactions (e.g., contact or call-to-action buttons) */
.button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1em;
    color: #fff;
    background-color: #3498db;
    border: none;
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #2980b9;
}

/* Responsive design adjustments */
@media (max-width: 768px) {
    .section_market {
        padding: 20px;
        margin: 20px;
    }

    .section_market_h2 {
        font-size: 1.8em;
    }

    .section_market_p {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .section_market_h2 {
        font-size: 1.5em;
    }

    .button {
        font-size: 0.9em;
        padding: 8px 16px;
    }
}
