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

body{
    font-family: Arial, sans-serif;

    background-image: url('solar.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;

    min-height: 100vh;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: 20px;
    padding: 20px;
}

strong{
    color:#000;
}

header {
    background: linear-gradient(135deg,#1f4e79,#2a7d46);    
}

h1, h2{
    color: white;
    padding: 30px;
    margin: 0;
    text-align: center;
}

.container{
    width: 850px;
    max-width: 90%;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.info{
    padding: 40px;
}

.info p, .info div{
    margin-bottom: 18px;
    padding-left: 15px;
    border-left: 4px solid #2a7d46;
    font-size: 18px;
}

.info ul {
    margin-top: 1rem;
    margin-left: 2rem;
}

.top-message{
    width: 850px;
    max-width: 90%;
    background: linear-gradient(135deg, #1f4e79, #2a7d46);
    color: white;
    text-align: center;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
    margin-bottom: 30px;
}

.top-message h2{
    font-size: 32px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.top-message p{
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 500;
    opacity: 0.9;
}

.company-link{
    display: inline-block;
    background: white;
    color: #1f4e79;
    font-weight: bold;
    font-size: 16px;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.company-link:hover{
    background: #eef4fa;
    color: #2a7d46;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

h1 > a {
	text-decoration: inherit;
	color: inherit;
}