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

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    padding: 20px;
    text-align: center;
}

header h1 {
    font-size: 1.5rem;
    font-weight: 400;
}

header h1 a {
    text-decoration: none;
    color: #2c3e50;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hero {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    text-align: center;
    padding: 40px 20px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #f8f9fa;
    background-image: url('_stripes_GLOBE---1850-2018-MO.png');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.8;
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 800px;
    margin: 0 auto;
    background: #333;
    padding: 60px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.8);
    color: white;
}

.hero h2 hr:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 0px;
	max-width:30%;
}

.hero h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 0;
    padding-bottom: 10px;
    line-height: 1.4;
}

.contact-info {
    margin-top: 40px;
}

.contact-info h3 {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.8;
    text-align: left;
}

.contact-info a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.contact-info a:hover {
    text-decoration: underline;
}

.stripes {
    padding: 20px;
    text-align: center;
    background-color: #f8f8f8;
}

.stripes a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
}

.stripes a:hover {
    text-decoration: underline;
}


@media (max-width: 768px) {
    .hero h2 {
        font-size: 2rem;
    }
    
    .contact-info h3 {
        font-size: 1rem;
    }
}
