*{
    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;
}

h1{
    text-align:center;
    color:#1f4e79;
    margin-bottom:40px;
    font-size:42px;
}

h2{
    text-align:center;
    color:#1f4e79;
    margin-bottom:40px;
    font-size:32px;
}

strong{
    color:#000;
}

.container{
    width: 850px;
    max-width: 90%;
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.info{
    display: grid;
    gap: 15px;
}

.info p, .info div{
    background: #f4f7fa;
    padding: 18px;
    border-radius: 10px;
    border-left: 5px solid #1f4e79;
    transition: 0.3s;
}

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

.info p:hover{
    transform: translateX(5px);
    background: #eef4fa;
}

.top-message{
    width: 850px;
    max-width: 90%;
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    border-top: 5px solid #1f4e79;
}

.top-message h2{
    color: #1f4e79;
    margin-bottom: 10px;
    font-size: 28px;
}

.top-message p{
    color: #555;
    font-size: 18px;
    margin-bottom: 20px;
}

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

.company-link:hover{
    background: #295f92;
    transform: translateY(-2px);
}

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