* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body, html {
    height: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #3e2f1c;
    background-color: #ffffff;
  }
  
  .container {
    display: flex;
    height: 100vh;
    flex-direction: row;
  }
  
  .image-side {
    flex: 1;
    background-color: #00d9ff;
  }
  
  .image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .content-side {
    flex: 1;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #fffaf2;
  }
  
  header h1 {
    font-size: 3em;
    color: #6b4f2f;
    margin-bottom: 10px;
  }
  
  header p {
    font-size: 1.2em;
    color: #8b6f47;
  }
  
  main h2 {
    margin-top: 40px;
    font-size: 1.8em;
    color: #4d3826;
  }
  
  main p {
    margin: 15px 0;
    font-size: 1em;
    line-height: 1.6;
  }
  
  .button {
    background-color: #c49b66;
    color: white;
    padding: 15px 30px;
    font-size: 1em;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 20px;
  }
  
  .button:hover {
    background-color: #a87d4b;
  }
  
  footer {
    text-align: center;
    font-size: 0.9em;
    color: #9c7e5c;
    padding-top: 40px;
  }
  