.main-content {
    flex-grow: 1;
    padding: 0 20px;
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    justify-content: center;
}

.hero-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
}

.hero-text {
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
}

.hero-text h1 {
    font-size: 5em;
    color: #ff914d;
    margin: 0;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(87, 185, 209, 0.5);
    text-align: center;
}

.hero-text h2 {
    font-size: 5em;
    color: #3f6874;
    margin-top: 20px;
    text-shadow: 2px 2px 4px rgba(87, 185, 209, 0.5);
    text-align: right;
    padding-right: 10%;
}

.hero-text p {
    font-size: 1em;
    color: #3F6874;
    text-align: center;
    max-width: 600px;
    margin: 20px auto
}

.btn-primary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: #4dc9e6;
    color: #fff;
    border: none;
    align-self: center;
}

.btn-primary:hover {
    background-color: #ff914d;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}