@charset "UTF-8";
    h1 {
      text-align: center;
      color: #003366;
      margin-bottom: 1rem;
    }

    .search-box {
      display: flex;
      justify-content: center;
      margin-bottom: 2rem;
    }

    .search-box input {
      padding: 0.5rem;
      font-size: 1rem;
      width: 200px;
    }

    .search-box button {
      padding: 0.5rem 1rem;
      background: #0aaf5c;
      color: white;
      border: none;
      cursor: pointer;
    }

    .section {
      background: #fff;
      border: 1px solid #ccc;
      padding: 1rem;
	  width:90%;
	  max-width:650px;
	  margin: 0 auto 2rem;
    }
	.result-doc{
      justify-content: space-between;
      margin-bottom: 2rem;
	}
	.result-doc .title{
		color: #0044cc;
		margin-bottom: 0.5rem;
		font-weight: 700;
	}
    .result {
      display: flex;
      justify-content: space-between;
      margin-bottom: 2rem;
    }

    .result-head {
      width: 35%;
    }
    .result-head .razd, .result-head .dtn{
		font-size:90%;
	}

    .result-head .title{
		font-decoration:none;
		font-weight:700;
		color:#444;
	}

    .result-head .title:hover{
		font-decoration:underline;
	}
    .result-text {
      width: 35%;
    }
	
    .result-image {
      width: 25%;
      text-align: right;
    }

    .result-image img {
      max-width: 100%;
      height: auto;
      border-radius: 4px;
    }

    .result a {
      color: #0044cc;
      text-decoration: none;
    }

    .highlight {
      color: red;
      font-weight: bold;
    }

    .qa {
      margin: 1rem 0;
    }

    .qa-question a{
      color: #0044cc;
      margin-bottom: 0.5rem;
	  font-weight:700;
    }

    .qa-answer {
      background: #f0f0f0;
      padding: 0.5rem;
      border-left: 4px solid #ccc;
    }

    .show-more {
      text-align: center;
      margin-top: 1rem;
    }

    .show-more button {
      background: #f2f6ff;
      border: 1px solid #b5d1fc;
      color: #0044cc;
      padding: 0.5rem 1rem;
      cursor: pointer;
    }

    @media (max-width: 768px) {
      .result {
        flex-direction: column;
      }
      .result-text,
      .result-head,
      .result-image {
        width: 100%;
      }
      .result-image {
        text-align: left;
        margin-top: 0.5rem;
      }
    }