  <style>
    @font-face {
      font-family: 'Cherry_Pro';
      src: url('cherry_pro.woff2') format('woff2'),
           url('cherry_pro.woff') format('woff'),
           url('cherry_pro.ttf') format('truetype');
      font-weight: normal;
      font-style: normal;
    }
	header, footer, nav a, .contact-info {
	font-family: 'Roboto', sans-serif;
	font-weight: 500; /* medium thickness */
	}
	p {
	color: #000000; 
	}

    header {
      background: #0f2a44;
      color: #fff;
      padding: 15px 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    .logo-container {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
      color: inherit;
    }
    .nav-logo-img {
      width: 45px;
      height: 45px;
      object-fit: contain;
      border-radius: 4px;
    }
    .logo-text {
      font-weight: 500;
      font-size: 1.1rem;
      letter-spacing: 0.5px;
    }
	nav a {
      color: #e5e7eb;
      margin-left: 24px;
      text-decoration: none;
      font-weight: 500;
      transition: color 0.2s ease;
    }
	.nav-flag {
		width: 35px;   
		height: auto;  
		margin-left: 8px;
		vertical-align: middle;
		cursor: pointer;
		}
    nav a:hover { color: #60a5fa; }

    body {
      font-family: 'Cherry_Pro', sans-serif;
      background-color: #fafafa;
      color: #333;
      line-height: 1.8;
      margin: 40px;
    }
	.hero {
      padding: 100px 40px;
      background: linear-gradient(to bottom, #f5f7fa, #e2e8f0);
      text-align: center;
    }
    .hero h1 {
      font-size: 42px;
      font-weight: 700;
      color: #0f2a44;
      margin-bottom: 16px;
      line-height: 1.2;
    }
    .hero p {
      font-size: 20px;
      color: #4b5563;
      margin-bottom: 35px;
      max-width: 700px;
      margin: 0 auto;
    }

    .btn {
      display: inline-block;
      padding: 12px 28px;
      background: #0f2a44;
      color: #fff;
      text-decoration: none;
      border-radius: 6px;
      font-weight: 500;
      margin: 8px;
      transition: background 0.3s ease, transform 0.2s ease;
    }
    .btn:hover {
      background: #1e4a75;
      transform: translateY(-2px);
    }

    section {
      padding: 80px 40px;
      max-width: 1100px;
      margin: auto;
    }
	.section-title {
      font-size: 32px;
      color: #0f2a44;
      margin-bottom: 24px;
      text-align: center;
      position: relative;
    }
    .section-title::after {
      content: '';
      display: block;
      width: 60px;
      height: 3px;
      background: #60a5fa;
      margin: 12px auto 0;
      border-radius: 2px;
    }
    .title-icon { width: 50px; height: 50px; }
    .text-center { text-align: center; max-width: 800px; margin: 0 auto; }

    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }
    .card {
      border: 1px solid #e5e7eb;
      padding: 30px;
      border-radius: 8px;
      background: #fff;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 20px rgba(0,0,0,0.05);
      border-color: #d1d5db;
    }
    .card h3 { color: #0f2a44; margin-top: 0; font-size: 20px; }
    .card p { color: black; margin-bottom: 0; }
    .card-icon {
      width: 80px;
      height: auto;
      margin: 0 auto 15px;
      display: block;
    }

    footer {
      background: #0f2a44;
      color: #9ca3af;
      padding: 30px 40px;
      text-align: center;
      font-size: 14px;
      border-top: 4px solid #1e4a75;
    }
    footer span { color: #fff; }

    .contact-info {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 6px;
      max-width: 600px;
      margin: 0 auto;
    }
    .contact-info p { margin: 0; font-size: 16px; }
	
	.form-input {
		width: 100%;
		border: 1px solid #d1d5db;
		border-radius: 8px;
		padding: 12px;
		font-size: 15px;
		color: #1f2937;
	}
	.form-input:focus {
	outline: none;
	border-color: #60a5fa;
	box-shadow: 0 0 0 2px #bfdbfe;
	}

	iframe {
		width: 100%;
		max-width: 100%;
		height: 750px;
		border: none;
	}
	
    @media (max-width: 768px) {
      header { flex-direction: column; padding: 20px; gap: 15px; }
      nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; }
      nav a { margin-left: 0; }
      .hero { padding: 60px 20px; }
      .hero h1 { font-size: 32px; }
      section { padding: 60px 20px; }
    }
  </style>