/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

.container {
    width: 80%;
    max-width: 1100px;
    margin: auto;
    overflow: hidden;
    padding: 0 20px;
}

/* Header */
header {
    background: #35424a;
    color: #ffffff;
    padding-top: 30px;
    min-height: 90px;
    border-bottom: #241de8 3px solid;
}

header h1 {
    float: left;
    margin: 0;
}

header p {
    float: right;
    margin-top: 10px;
    font-style: italic;
}

/* Main Content */
main {
    padding: 20px 0;
}

section {
    background: #ffffff;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

section h2 {
    color: #35424a;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

/* Specific Sections Styling */
#hero {
    background: #1d2ee8;
    color: #ffffff;
    text-align: center;
    padding: 40px 20px;
}

#hero h2 {
    color: #ffffff;
    border: none;
}

.application {
    background: #f9f9f9;
    border: 1px solid #ddd;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 4px;
}

.application h3 {
    color: #e8491d;
    margin-bottom: 5px;
}

/* Footer */
footer {
    background: #35424a;
    color: #ffffff;
    text-align: center;
    padding: 20px;
    margin-top: 30px;
}

/* Basic Responsive */
@media(max-width: 768px) {
    header h1,
    header p {
        float: none;
        text-align: center;
    }

    .container {
        width: 95%;
    }
}
