* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Work Sans", sans-serif;
    font-size: 20px;
}

/* container */
.container {
    width: 1200px;
    margin: auto;
}

/* HEADER */

.header {
    background:  #6d06e3;
    padding: 18px 0;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: white;
    font-weight: 700;
    font-size: 28px;
}

.nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 16px;
}

.header-actions {
    display: flex;
    gap: 15px;
}

.search {
    padding: 10px;
    border: none;
    cursor: pointer;
}

.book-btn {
    background: white;
    border: none;
    padding: 10px 18px;
    font-weight: 600;
    cursor: pointer;
}

/* breadcrumb */

.breadcrumb {
    font-size: 14px;
    padding: 15px 0;
}

/* HERO */

.hero {
    background:  #6d06e3;
    color: white;
    padding: 80px 0;
}

.hero h1 {
    font-size: 60px;
    margin-bottom: 15px;
}

.hero p {
    font-size: 20px;
}

/* Jump section */

.jump {
    background: #7b1a4a;
    text-align: center;
    color: white;
    padding: 20px;
}

.jump-links {
    margin-top: 10px;
}

.jump-links a {
    color: white;
    text-decoration: underline;
    margin: 0 20px;
    font-size: 18px;
}

.main {
    background: #f2f2f2;
    padding: 80px 0;
}

.main-content {
    max-width: 800px;
    margin: auto;
    color: #222;
    font-size: 18px;
    line-height: 1.6;
}

.section-title {
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-list {
    margin-left: 20px;
    margin-bottom: 25px;
}

.feature-list li {
    margin-bottom: 12px;
}

.login-link {
    color: #0046ff;
    text-decoration: underline;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 50px;
}

/* testimonial */

.testimonial {
    border-left: 5px solid  #6d06e3;
    padding-left: 20px;
    margin-top: 40px;
}

.quote {
    font-size: 26px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 15px;
}

.author {
    font-size: 16px;
    color: #555;
}

.info-section {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 100px 0;
}

.info-section.reverse {
    flex-direction: row-reverse;
}

.image-box {
    position: relative;
    width: 420px;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-box img {
    width: 350px;
    height: 350px;
    object-fit: cover;
    position: relative;
    z-index: 2;
}

.image-box::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    z-index: 1;
}

.image-box.orange::before {
    background: #f26722;
    left: -40px;
    top: -40px;
}

.image-box.red::before {
    background:  #6d06e3;
    right: -40px;
    bottom: -40px;
}

.image-box.dark::before {
    background: #3a3f4d;
    left: -40px;
    top: -40px;
}

/* text */

.text-box {
    max-width: 520px;
}

.text-box h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.text-box p {
    margin-bottom: 15px;
    line-height: 1.6;
}

/* buttons */

.outline-btn {
    padding: 14px 24px;
    border: 2px solid #111;
    background: none;
    font-weight: 600;
    cursor: pointer;
}

/* download section */

.download-box {
    text-align: center;
    padding: 60px 0;
}

.download-btn {
    padding: 16px 28px;
    border: 2px solid #111;
    background: white;
    font-weight: 600;
    cursor: pointer;
}

/* text section */

.text-section {
    padding: 80px 0;
    max-width: 800px;
}

.text-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
    margin-top: 40px;
}

.text-section p {
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer {
    background:  #6d06e3;
    color: #fff;
    padding: 45px 0 55px;
}

.footer a {
    color: #fff;
    text-decoration: none;
}

.footer-top,
.footer-middle {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-top {
    margin-bottom: 55px;
}

.footer-logo h2 {
    font-size: 50px;
    font-weight: 700;
    line-height: 1;
}

.footer-logo span {
    font-size: 16px;
    vertical-align: top;
    margin-left: 2px;
}

.footer-partners {
    display: flex;
    align-items: center;
    gap: 34px;
    font-size: 16px;
    font-weight: 600;
    margin-right: 45px;
}

.footer-middle {
    margin-bottom: 34px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
}

.footer-links a {
    font-size: 16px;
    font-weight: 600;
}

.footer-socials {
    display: flex;
    gap: 18px;
}

.footer-socials a {
    width: 34px;
    height: 34px;
    border-radius: 4px;
    background: #fff;
    color:  #6d06e3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.footer-bottom {
    max-width: 980px;
}

.copyright {
    font-size: 14px;
    margin-bottom: 22px;
    line-height: 1.6;
}
/* .copyright span{
    font-size: 8px;
} */
.footer-text {
    font-size: 14px;
    line-height: 1.7;
    max-width: 980px;
}

/* test pg */
*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family: Arial, sans-serif;
background:#f5f5f5;
}

/* HEADER */

.top-header{
background: #6d06e3;
padding:20px 0;
color:white;
}

.header-inner{
width:1200px;
margin:auto;
display:flex;
justify-content:space-between;
align-items:center;
}

.logo{
font-size:40px;
font-weight:bold;
}

.logo span{
font-size:14px;
vertical-align:top;
}

.logout{
cursor:pointer;
}

/* DASHBOARD LAYOUT */

.dashboard{
display:flex;
min-height:500px;
}

/* SIDEBAR */

.sidebar{
width:240px;
background: #6d06e3;
color:white;
}

.sidebar ul{
list-style:none;
}

.sidebar li{
padding:18px;
border-bottom:1px solid rgba(255,255,255,0.4);
cursor:pointer;
}

.sidebar li:hover{
background:#c70510;
}

.sidebar .active{
background:#c70510;
}

/* MAIN */

.main-content{
flex:1;
padding:30px;
background:white;
}

.page-title{
background: #6d06e3;
color:white;
display:inline-block;
padding:8px 20px;
border-radius:0 0 10px 10px;
margin-bottom:20px;
}

.content-box h3{
margin-bottom:10px;
}

.notes{
margin:15px 0 25px 20px;
}

.notes li{
margin-bottom:8px;
}

.form{
display:flex;
align-items:center;
gap:10px;
}

.form input{
padding:8px;
width:220px;
border:1px solid #ccc;
}

.form button{
    background: none;
    border: none;
    outline: none;
}

.disabled{
pointer-events: none;
opacity: 0.5;
}
.form button a{
background: #6d06e3;
color:white;
border:none;
padding:8px 16px;
cursor:pointer;
}

/* FOOTER BAR */

.bottom-bar{
background: #6d06e3;
color:white;
text-align:right;
padding:10px 40px;
font-size:14px;
}


/* answer */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body.trf-body {
  font-family: "Work Sans", sans-serif;
  background: #efefef;
  color: #444;
}

a {
  text-decoration: none;
}

/* header */
.trf-header {
  background: #6d06e3;
  height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
}

.trf-header__logo {
  color: #fff;
  font-size: 74px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -2px;
}

.trf-header__logo span {
  font-size: 18px;
  vertical-align: top;
  margin-left: 2px;
}

.trf-header__logout {
  color: #5d5d5d;
  font-size: 14px;
  font-weight: 600;
}

/* layout */
.trf-layout {
  display: flex;
  min-height: calc(100vh - 124px);
}

/* sidebar */
.trf-sidebar {
  width: 315px;
  background: #6d06e3;
  border-bottom-right-radius: 32px;
  overflow: hidden;
  flex-shrink: 0;
}

.trf-sidebar__item {
  display: block;
  color: #fff;
  font-size: 16px;
  padding: 14px 28px;
  border-top: 1px solid rgba(255,255,255,0.55);
  border-bottom: 1px solid rgba(255,255,255,0.18);
  background: #6d06e3;
}

.trf-sidebar__item--active {
  background: #b30022;
}

/* main */
.trf-main {
  flex: 1;
  position: relative;
  padding: 38px 28px 40px 28px;
}

.trf-tab {
  position: absolute;
  top: 0;
  left: 270px;
  transform: translateY(-50%);
  background: #6d06e3;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 6px 30px;
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
  min-width: 110px;
  text-align: center;
}

.trf-result-card {
  max-width: 1060px;
}

.trf-result-title {
  color: #b3364c;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.trf-result-text {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 18px;
  max-width: 1080px;
}

.trf-result-top {
  display: flex;
  align-items: flex-start;
  gap: 42px;
}

/* table */
.trf-info-table {
  width: 520px;
}

.trf-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  align-items: center;
  min-height: 38px;
  font-size: 15px;
}

.trf-row--gray {
  background: #cbcbcb;
}

.trf-label {
  padding: 8px 10px 8px 12px;
  font-weight: 500;
}

.trf-value {
  padding: 8px 12px;
  font-weight: 500;
}

.trf-score-head {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: #6d06e3;
  color: #fff;
  min-height: 38px;
  align-items: center;
  margin-top: 10px;
  font-size: 15px;
  font-weight: 600;
}

.trf-score-head__left,
.trf-score-head__center,
.trf-score-head__right {
  padding: 8px 10px;
}

.trf-score-head__center {
  text-align: center;
}

.trf-score-head__right {
  text-align: center;
  text-decoration: underline;
  font-weight: 500;
}

.trf-new-query {
  display: inline-block;
  margin-top: 18px;
  color: #c45b6a;
  text-decoration: underline;
  font-size: 15px;
}

/* photo */
.trf-photo-box {
  width: 180px;
  text-align: center;
  margin-top: 10px;
}

.trf-photo {
  width: 140px;
  height: 140px;
  object-fit: cover;
  display: block;
  margin: 0 auto 10px;
  background: #ddd;
}

.trf-photo-box p {
  font-size: 15px;
  line-height: 1.4;
  color: #5b5b5b;
}

/* footer */
.trf-footer {
  background: #6d06e3;
  height: 30px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0 12px;
}

.trf-footer a {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}

/* responsive */
@media (max-width: 1100px) {
  .trf-result-top {
    flex-direction: column;
  }

  .trf-photo-box {
    margin-left: 0;
  }
}

@media (max-width: 900px) {
  .trf-layout {
    flex-direction: column;
  }

  .trf-sidebar {
    width: 100%;
    border-bottom-right-radius: 24px;
  }

  .trf-tab {
    left: 20px;
  }

  .trf-info-table {
    width: 100%;
  }

  .trf-row {
    grid-template-columns: 150px 1fr;
  }

  .trf-header__logo {
    font-size: 52px;
  }
}

#british{
    width: 200px;
    height: 120px;
    object-fit: cover;
}

.footer-partners{
    width: 200px;
    height: 120px;
    object-fit: cover;
}