* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f5f5f5;
}

.container {
    display: flex;
    flex-wrap: wrap;
    background: white;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    max-width: 900px;
}

.content {
    flex: 1;
    padding: 40px;
}

h1 {
    color: #FF8B00;
    font-size: 2em;
    margin-bottom: 20px;
}

p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 20px;
    color: #333;
}

ul li {
    margin-bottom: 10px;
}

.image-credit {
    font-size: 0.9em;
    color: #aaa;
    margin-bottom: 20px;
}

.image-credit a {
    color: #ff8b00;
    text-decoration: none;
}

.image-credit a:hover {
    text-decoration: underline;
}

.btn {
    display: inline-block;
    background-color: #ff8b00;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #e64a19;
}

.image {
    flex: 1;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}
