 body {
   font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   min-height: 100vh;
   margin: 0;
   background: linear-gradient(to bottom right, #4196f2, #aed3f9);
   color: #333;
   text-align: center;
 }

 .container {
   max-width: 600px;
   padding: 20px;
   background-color: #ffffff;
   border-radius: 8px;
   box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
   margin-bottom: 20px;
 }

 h1 {
   font-size: 2.5em;
   color: #2c3e50;
   margin-bottom: 15px;
 }

 p {
   font-size: 1.1em;
   line-height: 1.6;
   color: #555;
   margin-bottom: 25px;
 }

 .bold {
   font-weight: bold;
 }

 .icon {
   font-size: 4em;
   color: #f39c12;
   margin-bottom: 20px;
 }

 .contact-info {
   margin-top: 20px;
   font-size: 1em;
   color: #666;
 }

 .contact-info img {
   width: 20px;
   vertical-align: middle;
   margin-right: 5px;
 }

 .contact-info a {
   color: #3498db;
   text-decoration: none;
 }

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