* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: white;
}

/* Container */
.container {
    /* max-width: 1100px; */
    /* margin: 40px auto; */
    background: #fff;
}

/* Header */
.header {
    text-align: center;
    padding: 30px 20px;
    height: 140px;
}

.logo {
    width: 170px;
}

.subtitle {
    font-size: 14px;
    color: #555;
    margin-top: 5px;
}

/* Hero Section */
.hero {
    position: relative;
    height: calc(100vh - 240px);
    background: #ccc;
    /* placeholder for image */
    background: url('bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
}

/* Dark overlay */
.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

/* Content */
.content {
    position: relative;
    color: #fff;
    padding: 20px;
    max-width: 600px;
    margin-left: 5vw;
}

/* Title box */
.title-box {
    margin-bottom: 20px;
}

.title-main {
    display: inline-block;
    background: #2f3c7e;
    padding: 10px 20px;
    font-size: 30px;
    font-weight: bold;
}

.title-sub {
    display: inline-block;
    background: #f05a28;
    padding: 10px 20px;
    font-size: 30px;
    /* margin-top: 8px; */
}

/* Description */
.description {
    font-size: 16px;
    line-height: 1.6;
}

a {
    color: white;
}

/* Footer */
.footer {
    background: #d9d9d9;
    text-align: center;
    padding: 25px;
    font-size: 14px;
    color: #555;
    height: 100px;
}