
    html, body {
        width: 100%;
        overflow-x: hidden;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      background: url('../images/forest.jpg') no-repeat center center/cover;
      font-family: Arial, sans-serif;
      line-height: 1.6;
      background-color: #f4f4f4;
      color: #aaaaaa;
    }

    header {
        padding:10px;
        display: flex;
        justify-content: center;
        align-items: center;
        color: #aaaaaa;
        background-color: black;
    }

    .center p {
      font-size: 1.4rem;
      text-align: center;
      padding: 0 20px;
    }
    .center h1 {
      font-size: 3.5rem;
      text-align: center;
      padding: 0 20px;
    }

    section {
        padding: 30px 20px;
        max-width: 800px;
        margin: auto;
        background-color: black;
        margin-top: 20px;
        border-radius: 8px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        width: calc(100% - 40px);
    }

    @media (min-width: 475px) {
      .section1-container {
        display: flex;  
        gap: 20px;
        align-items: flex-start;
        flex-wrap: wrap;
      }
    }

    .section1-image {
        width: 100%;
        max-width: 300px;
        height: auto;
    }

    @media (min-width: 809px) {
        .section1-text {
            flex: 1 1 200px;
        }
    }
	
	@media (max-width:800px){
		
		.pricing-wrapper.active {
		  display: block;
		}
		.pricing-wrapper img {
		  display: none;
		}
	}

    @media (max-width: 620px) {
      header {
        height: auto;
        padding: 20px 10px;
      }

      .center h1 {
        font-size: 1.8rem;
        line-height: 1.2;
      }

      .center p {
        font-size: 1rem;
        margin-top: 6px;
      }

      section {
        padding: 20px 15px;
      }
    }

    td { min-width: 200px; }

    .info-icon {
      position: relative;
      cursor: help;
      display: inline-block;
      margin-left: 5px;
      font-size: 1em;
    }

    .tooltip-text {
      visibility: hidden;
      width: max-content;
      background-color: #fff;
      color: #333;
      text-align: left;
      border: 1px solid #ccc;
      border-radius: 4px;
      padding: 5px 8px;
      position: absolute;
      z-index: 10;
      top: 120%;
      left: 50%;
      transform: translateX(-50%);
      white-space: nowrap;
      box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }

    .info-icon:hover .tooltip-text {
      visibility: visible;
    }

    #contact {
      text-align: center;
    }

    @media (min-width: 475px) and (max-width: 808px) {
      .section1-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .section1-text {
        text-align: center;
      }
    }

    .tabs {
      margin-bottom: 20px;
    }

    .tab-button {
      padding: 10px 20px;
      margin-right: 5px;
      cursor: pointer;
      background-color: #aaaaaa;
      border: 3px solid #000000;
      border-radius: 10px;
      border-bottom: none;
    }

    .tab-button.active {
      border: 3px solid #7fe47f;
      background-color: #7fe47f;
      color: #000000;
    }

    .pricing-wrapper.active {
      display: flex;
    }

    .pricing-wrapper {
      display: none;
    }

    nav {
      background-color: black;
      text-align: center;
      padding: 10px 0;
    }

    nav a {
      color: white;
      text-decoration: none;
      margin: 0 0 0 8px;
      font-weight: 500;
    }

    nav a:visited {
      color: white;
    }

    nav a:hover,
    nav a:focus {
      color: #7fe47f;
      text-decoration: underline;
    }

    nav a:not(:last-child)::after {
      content: " |";
      color: white;
      margin-left: 8px;
      display: inline-block;
    }
	
	.lang-switch {
		width:30px;
		height:20px;
		vertical-align: middle;
	}
	.flex{display:flex;}