/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background: url('../inc/images/sea-2055969_1920-scaled-1.jpg') center center no-repeat fixed;
/*	background: linear-gradient(180deg,#1e559d 0%,rgba(41,196,169,0) 100%),url(../inc/images/sea-2055969_1920-scaled-1.jpg) !important;*/
    background-size: cover;
    min-height: 100vh;
    position: relative;
    color: #ffffff;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(39, 71, 149, 0.6);
    z-index: 0;
}

#page-container {
    position: relative;
    min-height: 100vh;
    z-index: 1;
	text-shadow: 0em 0em 0.3em rgba(0,0,0,1.0);
}

.section-body {
    padding: 80px 20px;
    min-height: calc(100vh - 60px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.row {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.text-center {
    text-align: center;
}

h1 {
    font-weight: 800;
    font-size: 100px;
    color: #FFFFFF !important;
	line-height: 1em;
}

h2 {
    font-size: 1.5em;
    font-weight: 400;
    line-height: 1.5;
    max-width: 800px;
    margin: 0 auto;
}

.divider {
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    width: 100px;
    margin: 30px auto;
}

footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 0.9em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 2em;
		line-height: 1em;
    }
    
    h2 {
        font-size: 1.2em;
    }
    
    .section-body {
        padding: 40px 20px;
    }
}
