    body {
      margin: 0;
      font-family: 'Roboto', sans-serif;
      background-color: #c0c0c0;
      color: #1d1d1d;
    }

    .container {
      max-width: 1045px;
      margin: auto;
      padding: 20px;
    }

    .header {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      background-color: #062c43;
      color: white;
      padding: 15px 20px;
      border-radius: 10px;
      box-shadow: 1px 1px 5px #000;
      margin-bottom: 0;
      padding-bottom: 10px;
    }

    .header img {
      max-width: 250px;
      border-radius: 10px;
      transform: scaleX(-1);
    }

    .info {
      flex: 1;
      margin-left: 20px;
      text-align: center;
    }

    .info h1 {
      font-family: 'Playfair Display', serif;
      margin: 0;
      font-size: 2em;
    }

    .info p {
      margin: 5px 0;
    }

    .info a {
      color: #e5c100;
      text-decoration: none;
    }

    .info p:last-child {
      margin-bottom: 0;
    }

    .main-text {
      background-color: #F9ECD9;
      margin: 0 auto;
      max-width: 1000px;    
      padding: 20px;
      border-radius: 10px;
      margin-top: 10px;
      font-size: 1.1em;
      line-height: 1.6;
      box-shadow: 1px 1px 5px #000;
    }

    .main-text .logo {
      float: right;
      margin: 10px 0 10px 20px;
      max-width: 180px;
      height: auto;
      shape-outside: ellipse();
      clip-path: ellipse(50% 50% at 50% 50%);
    }

    .contact {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 15px;
      margin-top: 50px; 
      margin-left: auto;
    }

    .contact a {
      background-color: #062c43;
      color: #F9ECD9;
      padding: 12px 20px;
      text-decoration: none;
      border-radius: 5px;
      font-weight: bold;
      display: flex;
      align-items: center;
      gap: 8px;
      box-shadow: 1px 1px 5px #000;
      margin-bottom: 25px;
      transition: background-image 0.3s ease, color 0.3s ease;
    }

    .contact a:hover {
       background-image: linear-gradient(to right, #ffecd2 0%, #fcb69f 100%);
       color: #1D3044;
    }

    .logo {
      display: block;
      max-width: 250px;
      margin: 30px auto 0 auto;
    }

    @media (max-width: 768px) {
      .header {
        flex-direction: column;
        text-align: center;
      }

      .main-text .logo {
        float: none;
        display: block;
        margin: 20px auto;
      }

      .info {
        margin-left: 0;
      }
    }

    @media (max-width: 480px) {
      .container {
        padding: 10px;
      }
    }