/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: #3D3D3D;
  background-color: #FAFAFA;
  font-size: 16px;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: white;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

/* Header */
.header {
  text-align: center;
  padding: 40px 20px 20px;
  background-color: white;
  border-bottom: 1px solid #E5E5E5;
}

.logo {
  max-width: 300px;
  height: auto;
  max-height: 80px;
}

/* Main content */
.content {
  flex: 1;
  padding: 40px 20px;
}

.message-section h1 {
  color: #009FE3;
  font-size: 2.2em;
  font-weight: 500;
  margin-bottom: 30px;
  text-align: center;
}

.message {
  margin-bottom: 40px;
}

.message h2 {
  color: #009FE3;
  font-size: 1.4em;
  font-weight: 500;
  margin: 25px 0 15px 0;
}

.message p {
  margin-bottom: 20px;
  line-height: 1.7;
}

.message ul {
  margin: 20px 0;
  padding-left: 20px;
}

.message li {
  margin-bottom: 15px;
  line-height: 1.7;
}

.message strong {
  color: #3D3D3D;
  font-weight: 500;
}

.message a {
  color: #009FE3;
  text-decoration: none;
  font-weight: 500;
}

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

.message em {
  font-style: italic;
  color: #686868;
}

/* Language divider */
.language-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #009FE3 20%, #009FE3 80%, transparent 100%);
  margin: 60px 0 40px 0;
  border-radius: 1px;
}

/* Footer */
.footer {
  background-color: #F6F6F6;
  border-top: 1px solid #E5E5E5;
  padding: 30px 20px;
  text-align: center;
}

.contact-info {
  margin-bottom: 20px;
}

.contact-info p {
  color: #686868;
  font-size: 14px;
  margin-bottom: 8px;
}

.contact-email {
  color: #009FE3;
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
}

.contact-email:hover {
  text-decoration: underline;
}

.company-info {
  color: #969696;
  font-size: 12px;
  border-top: 1px solid #E5E5E5;
  padding-top: 15px;
  margin-top: 15px;
}

/* Responsive design */
@media (max-width: 960px) {
  .container {
    margin: 0;
    box-shadow: none;
  }
  
  .header {
    padding: 30px 15px 15px;
  }
  
  .logo {
    max-width: 250px;
    max-height: 60px;
  }
  
  .content {
    padding: 30px 15px;
  }
  
  .message-section h1 {
    font-size: 1.8em;
  }
  
  .message h2 {
    font-size: 1.2em;
  }
  
  .footer {
    padding: 25px 15px;
  }
}

@media (max-width: 400px) {
  .header {
    padding: 20px 10px 10px;
  }
  
  .logo {
    max-width: 200px;
    max-height: 50px;
  }
  
  .content {
    padding: 20px 10px;
  }
  
  .message-section h1 {
    font-size: 1.6em;
  }
  
  .message ul {
    padding-left: 15px;
  }
  
  .footer {
    padding: 20px 10px;
  }
  
  .contact-email {
    font-size: 16px;
  }
}
