/* General Body */
body {
    font-family: "Raleway", sans-serif;
    background: linear-gradient(135deg, #A3BBAD 0%, #357266 100%);
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    line-height: 1.6;
}

/* Chat widget */
.chat-widget-wrapper {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.chat-button {
    background-color: #FF6B6B;
    color: white;
    padding: 15px 25px;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.chat-button:hover {
    background-color: #FF4C4C;
    transform: translateY(-3px);
    box-shadow: 0px 10px 20px rgba(0,0,0,0.4);
}

/* Headings */
h1 {
    font-size: 3em;
    margin-bottom: 0.2em;
    text-align: left;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.3);
}

h2 {
    font-size: 2em;
    margin-bottom: 0.5em;
    text-align: left;
    color: #FFD700;
}

/* Paragraphs */
p {
    font-size: 1.2em;
    text-align: left;
    margin-bottom: 1em;
}

/* Containers */
.container {
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 50px 5%;
    margin: 20px 0;
    border-radius: 20px;
    background: rgba(0,0,0,0.2);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.container:hover {
    transform: translateY(-5px);
}

/* Specific Containers */
.container0 {
    padding-top: 150px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
}

.container1 {
    background: rgba(53, 114, 102, 0.8);
}

.container2 {
    background: rgba(14, 59, 67, 0.85);
}

/* Images */
.img, .small-image {
    width: 50%;
    height: auto;
    border-radius: 15px;
    margin: 20px 0;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.image-container img {
    width: 45%;
    height: auto;
    margin-right: 10px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.image-container img:hover {
    transform: scale(1.05);
}

/* Lists */
ul {
    list-style-type: disc;
    margin-left: 25px;
    padding-left: 0;
}

li {
    font-size: 1.2em;
    margin-bottom: 10px;
}

/* Links and Buttons in Content */
a, .content-button {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

a:hover, .content-button:hover {
    color: #FF6B6B;
}

/* Responsive */
@media (max-width: 900px) {
    .container {
        width: 95%;
        padding: 30px 3%;
    }
    h1 { font-size: 2.2em; }
    h2 { font-size: 1.6em; }
    p { font-size: 1em; }
    .img, .small-image, .image-container img { width: 90%; }
}
