/* General Page Styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #f0f2f5;
}

h1, h2 {
    color: #2c3e50;
    text-align: center;
}

/* Header Styling */
.header {
    background-color: #3498db;
    color: white;
    text-align: center;
    padding: 20px;
    border-bottom: 5px solid #2980b9;
}

/* Floating Section */
.float-section {
    background: #fff;
    margin: 20px;
    padding: 20px;
    border: 2px solid #ccc;
    border-radius: 10px;
}

.float-image {
    float: left;
    margin-right: 15px;
    border: 3px solid #555;
    border-radius: 8px;
}

/* Positioning Section */
.position-section {
    background: #ecf0f1;
    margin: 20px;
    padding: 20px;
    border: 2px dashed #7f8c8d;
    border-radius: 10px;
    position: relative;
}

.position-container {
    height: 150px;
    position: relative;
    background: #dfe6e9;
}

.box {
    width: 100px;
    height: 100px;
    text-align: center;
    line-height: 100px;
    border: 2px solid #2c3e50;
    border-radius: 10px;
    margin: 5px;
    color: white;
}

.static { background-color: #1abc9c; position: static; }
.relative { background-color: #f39c12; position: relative; left: 40px; }
.absolute { background-color: #9b59b6; position: absolute; top: 30px; left: 200px; }
.fixed { background-color: #e74c3c; position: fixed; top: 10px; right: 10px; }

/* Flexbox Section */
.flex-section {
    background: #fff;
    margin: 20px;
    padding: 20px;
    border: 2px solid #bdc3c7;
    border-radius: 10px;
}

.flex-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: #eee;
    padding: 10px;
    border-radius: 8px;
}

.flex-item {
    background-color: #3498db;
    color: white;
    padding: 20px;
    margin: 10px;
    border-radius: 8px;
    border: 2px solid #2980b9;
    flex: 1;
    text-align: center;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 15px;
    border-top: 4px solid #34495e;
}
