body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333; /* Black text on light background */
}

header {
    background-color: #333;
    color: #fff;
    padding: 1rem 0;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2.5rem;
}

header p {
    font-size: 0.9rem;
}

main {
    width: 80%;
    margin: 20px auto;
    background-color: #fff; /* White background for content */
    padding: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

section:last-child {
    border-bottom: none;
}

h2 {
    color: #333;
    border-bottom: 2px solid #007AFF; /* Apple blue accent */
    padding-bottom: 10px;
    margin-bottom: 20px;
}

h3 {
    color: #555;
    margin-top: 20px;
    margin-bottom: 10px;
}

.subsection {
    margin-bottom: 20px;
    padding-left: 15px;
    border-left: 3px solid #007AFF;
}

.subsection img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 15px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
}

#swot-analysis-content h4 {
    margin-top: 15px;
    color: #007AFF;
}

#swot-analysis-content ul {
    list-style-type: disc;
    margin-left: 20px;
}

#swot-analysis-content li {
    margin-bottom: 8px;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: #fff;
    margin-top: 30px;
}

footer p {
    margin: 0;
    font-size: 0.8rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    main {
        width: 95%;
    }
    header h1 {
        font-size: 2rem;
    }
}

