* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', Meiryo, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232c4a9e' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.mobile-br {
  display: none;
}
.header {
  background: #2c4a9e;
  color: white;
  padding: 6px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}
.header-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}
.logo {
  font-size: 15px;
  font-weight: bold;
  display: flex;
  align-items: center;
}
.logo img {
  height: 40px;
  margin-right: 10px;
  background: white;
  padding: 5px;
  border-radius: 5px;
}
.nav-links {
  display: flex;
  gap: 30px;
  font-size: 14px;
}
.nav-links a {
  color: white;
  text-decoration: none;
  position: relative;
  padding: 5px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #e74c3c;
  transition: width 0.3s ease;
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-links a.cta-header {
  color: white;
  background: #e74c3c;
  color: white;
  padding: 2px 12px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(231, 76, 60, 0.3);
  position: relative;
  z-index: 1;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.nav-links a.cta-header:hover{
  background: #c0392b;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
}
.nav-links a.cta-header::after  {
  content: none;
}
.nav-links a.cta-header:hover::after {
  width: 0;
}

.section-title {
  text-align: center;
  font-size: 36px;
  color: #2c4a9e;
  margin-bottom: 50px;
  position: relative;
}

.section-title-white {
  text-align: center;
  font-size: 36px;
  color: #fff;
  margin-bottom: 50px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  background: #e74c3c;
  margin: 20px auto;
}

/*
HERO 1 ////////////////////////////////////////////////////////////////////////////////////////////////////
*/

.hero1 {
  background:
    url('assets/img/Hero1.png') center/cover;
  min-height: 600px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid #e74c3c;
  /*box-shadow: inset 0 0 00px rgba(0, 0, 0, 0.1);*/
  filter: brightness(1.15); /* 明るさ調整 全体に適用されてしまう */
  margin-top: 52px;
}
/*
.hero1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 310% 70%, rgba(255, 215, 0, 0.08) 0%, transparent 90%);
  pointer-events: none;
}*/
.hero1 .hero-text {
  position: relative;
  z-index: 5;
}
.hero1 .hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  position: relative;
  z-index: 4;
  transform: translateY(-10px);
}
.hero1 .hero-title {
  color: white;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow:
    2px 2px 4px rgba(0, 0, 0, 0.5),
    0 0 15px rgba(44, 74, 158, 0.3);
  position: relative;
  display: inline-block;
  letter-spacing: 0.5px;
}
.hero1 .hero-subtitle {
  font-size: 28px;
  margin-bottom: 10px;
  color: #ffd700;
  text-shadow:
    1px 1px 3px rgba(0, 0, 0, 0.5),
    0 0 15px rgba(255, 215, 0, 0.3);
  font-weight: 500;
  letter-spacing: 1px;
  position: relative;
}
.hero1 .hero-description {
  color: white;
  display: inline-block;
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.8;
  padding: 20px 40px;
  border-radius: 12px;
  backdrop-filter: blur(5px);
  position: relative;
  font-weight: 500;
}
.hero1 .hero-image {
  text-align: center;
}

/*
HERO 2 ////////////////////////////////////////////////////////////////////////////////////////////////////
*/

.hero2 {
  min-height: 700px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid #e74c3c;
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.3);
  margin-top: 52px;
}
/* UK国旗の背景（最下層） */
.hero2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('assets/img/uk2.png') center/cover;
  z-index: 1;
}
/* UK国旗の白オーバーレイ */
.hero2::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0);
  z-index: 2;
}
/* 街の画像を別の擬似要素で重ねる */
.hero2>.landmark-overlay {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 35%;
  background: url('assets/img/uk-landmark.png') 5% bottom/contain no-repeat;
  /* centerから30%に変更 */
  opacity: 0.8;
  z-index: 3;
  pointer-events: none;
}
/* heroの中のコンテンツを最前面に表示 */
.hero2>* {
  position: relative;
  z-index: 4;
}
.hero2 .hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  position: relative;
  z-index: 4;
  transform: translateY(-10px);
}
/* hero-textを確実に最前面に */
.hero2 .hero-text {
  position: relative;
  z-index: 5;
}
.hero2 .hero-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow:
    2px 2px 4px rgba(0, 0, 0, 0.1),
    0 0 20px rgba(44, 74, 158, 0.1);
  position: relative;
  display: inline-block;
  letter-spacing: 0.5px;
}
.hero2 .hero-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #e74c3c 0%, #ff6b6b 50%, #e74c3c 100%);
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(231, 76, 60, 0.3);
}
.hero2 .hero-subtitle {
  font-size: 28px;
  margin-bottom: 10px;
  color: #b79d0e;
  text-shadow:
    1px 1px 3px rgba(0, 0, 0, 0.2),
    0 0 15px rgba(255, 215, 0, 0.2);
  font-weight: 700;
  letter-spacing: 1px;
  position: relative;
}
/*
.hero-subtitle::before {
  content: '✦';
  position: absolute;
  left: -30px;
  color: #ffd700;
  opacity: 0.7;
  animation: twinkle 2s ease-in-out infinite alternate;
}
.hero-subtitle::after {
  content: '✦';
  position: absolute;
  right: -30px;
  color: #ffd700;
  opacity: 0.7;
  animation: twinkle 2s ease-in-out infinite alternate-reverse;
}
  */
.hero2 .hero-description {
  display: inline-block;
  font-size: 19px;
  margin-bottom: 30px;
  line-height: 1.8;
  padding: 20px 40px;
  border-radius: 12px;
  /*backdrop-filter: blur(5px);*/
  position: relative;
  font-weight: 700;
}
.hero2 .hero-image {
  text-align: center;
}
.hero2 .hero-image img {
  max-width: 100%;
  border-radius: 50%;
  border: 5px solid white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.uk-network {
  background: #f2f3e9 url('assets/img/bg2.png') repeat;
  padding: 50px 0;
  text-align: center;
  border-bottom: 1px solid #e0e0e0;
}
.section-title-network {
  color: #2c4a9e;
  margin-bottom: 40px;
  position: relative;
  display: flex;
  align-items: center;
}
.section-title-network::before,
.section-title-network::after {
  content: "";
  height: 1px;
  flex-grow: 1;
  background: #ccc;
}
.section-title-network::before {
  margin-right: 1rem;
}
.section-title-network::after {
  margin-left: 1rem;
}
.section-title-network span {
  color: #e74c3c;
  font-weight: bold;
  margin-right: 6px;
}
.uk-network-description {
  margin-top: 0;
  margin-bottom: 20px;
  color: #666;
  font-weight: 700;
}
.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.city-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.city-card:hover {
  transform: translateY(-5px);
}
.city-name {
  background: #2c4a9e;
  color: white;
  padding: 10px;
  font-weight: bold;
  text-align: center;
  position: relative;
}
.city-name::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #2c4a9e;
}
.city-salary {
  font-size: 24px;
  color: #e74c3c;
  font-weight: bold;
  padding: 15px 0 5px;
}
.city-salary-jpy {
  font-size: 14px;
  color: #666;
  padding-bottom: 5px;
}
.city-job {
  font-size: 13px;
  color: #333;
  padding: 5px 10px 15px;
}
.city-currency {
  max-width: 1000px;
  margin: 0 auto;
  padding: 16px 0;
}
.city-currency-inner {
  text-align: right;
  color: #585858;
  font-size: 14px;
}
.features-section {
  background: #fff;
  padding: 80px 0;
  position: relative;
}
.features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 10px;
  background: linear-gradient(to right, #e74c3c, #2c4a9e);
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}
.feature-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
  border-top: 5px solid #2c4a9e;
}
.job-card {
  border-top: 5px solid #e74c3c;
}
.job-title {
  background: #2c4a9e;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
  display: inline-block;
}
.job-salary {
  font-size: 24px;
  font-weight: bold;
  color: #2c4a9e;
  margin-bottom: 15px;
}
.yen-amount {
  font-size: 16px;
  color: #666;
  font-weight: normal;
}
.job-description {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}
.job-location {
  background: #2c4a9e;
  color: white;
  padding: 5px 15px;
  border-radius: 15px;
  font-size: 12px;
  display: inline-block;
}
.tips-section {
  background:
    url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E"),
    linear-gradient(135deg, #2c4a9e, #1a2f6b);
  padding: 80px 0;
  color: white;
  position: relative;
  overflow: hidden;
}
.tips-description {
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  font-size: 18px;
  color: #fff;
}
.tips-list {
  display: grid;
  gap: 30px;
  margin-bottom: 50px;
  justify-items: center;
  align-items: center;
}
.tip-item {
  display: flex;
  gap: 20px;
  background: white;
  padding: 30px;
  border-radius: 15px;
  border-left: 5px solid #2c4a9e;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 800px;
}
.tip-icon {
  font-size: 42px;
  min-width: 50px;
  text-align: center;
}
.tip-icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}
.tip-content h3 {
  color: #2c4a9e;
  margin-bottom: 15px;
  font-size: 20px;
  background: linear-gradient(transparent 68%, #fff56d 40%);
  display: inline-block;
}
.tip-content p {
  line-height: 1.8;
  color: #666;
}
.tip-cta {
  background: white;
  border-radius: 15px;
  border: 3px solid #2c4a9e;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.tip-points {
  list-style-type: disc;
  margin: 15px 0;
  padding-left: 25px;
  color: #333;
}

.tip-points li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.tip-points li:last-child {
  margin-bottom: 0;
}

/* 必要に応じて、既存のスタイルとの調整 */
.tip-content ul.tip-points {
  text-align: left;
}
.support-list {
  display: grid;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.support-item {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 30px;
  background: white;
  padding: 30px 10px 10px 30px;
  border-radius: 15px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.support-info {
  display: flex;
  flex-direction: column;
}
.support-title {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}
.support-number {
  color: #e74c3c;
  font-size: 48px;
  font-weight: bold;
  line-height: 1;
  min-width: 50px;
}
.support-text {
  flex: 1;
}
.support-text p {
  color: #666;
  font-size: 14px;
  margin-bottom: 2px;
  font-weight: normal;
}
.support-text h3 {
  color: #2c4a9e;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 0;
}
.support-text h3 span {
  background: linear-gradient(transparent 68%, #fff56d 40%);
}
.support-description {
  color: #666;
  line-height: 1.8;
  margin-bottom: 15px;
}
.support-highlight {
  color: #e74c3c;
  font-weight: bold;
}
.support-image {
  text-align: center;
}
.support-image img {
  width: 288px;
  height: 198px;
  object-fit: contain;
  border-radius: 10px;
}
.final-cta-section {
  background: linear-gradient(135deg, #2c4a9e, #1a2f6b);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta-section::before,
.final-cta-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 30%;
  /* 50%から35%に縮小（元の70%） */
  height: 50%;
  /* 高さも70%に調整 */
  background-image: url('assets/img/uk-landmark.png');
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: contain;
  pointer-events: none;
}

.final-cta-section::before {
  left: 5%;
  /* 左側に余白を追加 */
}

.final-cta-section::after {
  right: 5%;
  /* 右側に余白を追加 */
  transform: scaleX(-1);
}

/* コンテンツが画像より前面に来るように */
.final-cta-section .container {
  position: relative;
  z-index: 1;
}

/* コンテンツが画像より前面に来るように */
.final-cta-section .container {
  position: relative;
  z-index: 1;
}
.feature-card:hover {
  transform: translateY(-5px);
}
.feature-icon {
  font-size: 48px;
  margin-bottom: 20px;
  color: #2c4a9e;
  background: #f5f5f5;
  width: 100px;
  height: 100px;
  line-height: 100px;
  border-radius: 50%;
  margin: 0 auto 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.feature-title {
  font-size: 24px;
  color: #2c4a9e;
  margin-bottom: 15px;
  font-weight: bold;
  position: relative;
  display: inline-block;
}
.feature-title::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: #e74c3c;
}
.feature-description {
  color: #666;
  line-height: 1.8;
}
.benefits-section {
  background: #f8f9fa url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%232c4a9e' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  padding: 80px 0;
  position: relative;
}
.benefits-description {
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  font-size: 18px;
  color: #2c4a9e;
}
.benefits-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: white;
  padding: 30px;
  border-radius: 15px;
  border-top: 5px solid #e74c3c;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.benefit-item:hover {
  transform: translateY(-5px);
}
.benefit-content {
  flex: 1;
}
.benefit-content h3 {
  color: #2c4a9e;
  font-size: 22px;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}
.benefit-content h3::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: #e74c3c;
}
.benefit-content p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
}
.benefit-image {
  text-align: center;
  margin-bottom: 20px;
}
.benefit-image img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.3s ease;
  /*
  box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
  */
}
.benefit-image-kaban img {
border-radius: 4px;

}
.benefit-item:hover .benefit-image img {
  transform: scale(1.05);
}
.testimonials {
  background: linear-gradient(135deg, #2c4a9e, #1a2f6b);
  padding: 80px 0;
  color: white;
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
}
.testimonial-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}
.testimonial-title::after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  background: #e74c3c;
  margin: 20px auto;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}
.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 15px;
  border-top: 3px solid #e74c3c;
}
.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.8;
  position: relative;
}
.testimonial-text::before {
  content: '"';
  font-size: 60px;
  color: rgba(255, 255, 255, 0.1);
  position: absolute;
  top: -20px;
  left: -10px;
}
.testimonial-author {
  display: flex;
  align-items: center;
}
.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  border: 2px solid white;
}
.testimonial-name {
  font-weight: bold;
}
.testimonial-info {
  font-size: 14px;
  opacity: 0.8;
}
.cta-section {
  background: linear-gradient(135deg, #2c4a9e, #1a2f6b);
  color: white;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 30"><defs><clipPath id="t"><path d="m30,15h30v15zv15h-30zh-30v-15zv-15h30z"/></clipPath></defs><path d="m0,0v30h60v-30z" fill="%23012169"/><path d="m0,0 60,30m0-30-60,30" stroke="%23fff" stroke-width="6"/><path d="m0,0 60,30m0-30-60,30" clip-path="url(%23t)" stroke="%23C8102E" stroke-width="4"/><path d="m30,0v30m-30-15h60" stroke="%23fff" stroke-width="10"/><path d="m30,0v30m-30-15h60" stroke="%23C8102E" stroke-width="6"/></svg>') no-repeat;
  background-size: 300px 150px;
  background-position: center;
  opacity: 0.05;
}
.cta-title {
  font-size: 36px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.cta-subtitle {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}
.cta-button {
  background: #e74c3c;
  color: white;
  padding: 20px 50px;
  font-size: 20px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(231, 76, 60, 0.3);
  position: relative;
  z-index: 1;
  border: 2px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-button:hover {
  background: #c0392b;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
}
.cta-button:active {
  transform: translateY(1px);
}
.cta-in-section {
  margin-top: 20px;
}
.cta-in-section .cta-button {
  padding: 10px 20px;
  font-size: 16px;
}
.uk-flag {
  display: inline-block;
  margin: 0 5px;
  vertical-align: middle;
}
.uk-flag-img {
  width: 20px;
  height: auto;
  display: inline-block;
  vertical-align: middle;
  margin: 0 6px;
}
.support-section {
  background: #f8f9fa url('assets/img/bg2.png') repeat;
  padding: 80px 0;
  position: relative;
}
.support-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(to right, #2c4a9e, #e74c3c);
}
.support-content {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 50px;
  align-items: center;
}
.support-text h2 {
  color: #2c4a9e;
  font-size: 32px;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}
.support-text h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: #e74c3c;
}
.support-text strong {
  color: #2c4a9e;
  background: linear-gradient(transparent 70%, rgba(231, 76, 60, 0.3) 70%);
  padding: 0 2px;
}
.support-image img {
  max-width: 100%;
}
.faq-section {
  padding: 80px 0;
  background: white;
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  margin-bottom: 20px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
}
.faq-question {
  background: #f5f5f5;
  padding: 20px;
  font-weight: bold;
  color: #2c4a9e;
  cursor: pointer;
  position: relative;
  padding-left: 50px;
}
.faq-question::before {
  content: 'Q';
  position: absolute;
  left: 20px;
  color: #e74c3c;
  font-weight: bold;
}
.faq-answer {
  padding: 20px;
  padding-left: 50px;
  position: relative;
  background: white;
  border-top: 1px solid #e0e0e0;
}
.faq-answer::before {
  content: 'A';
  position: absolute;
  left: 20px;
  color: #2c4a9e;
  font-weight: bold;
}
.footer {
  background: #333;
  color: white;
  padding: 30px 0;
  text-align: center;
}
.footer p {
  color: #999;
}
.footer-button {
  background: #e74c3c;
  color: white;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.footer-button:hover {
  background: transparent;
  border-color: #e74c3c;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 10px 0;
}
.footer-links a {
  color: white;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
.footer-links a:hover {
  opacity: 1;
}
.highlight-text {
  background: linear-gradient(transparent 60%, rgba(231, 76, 60, 0.3) 40%);
  padding: 0 2px;
}
.uk-red {
  color: #e74c3c;
  font-weight: bold;
}
.uk-blue {
  color: #2c4a9e;
  font-weight: bold;
}
.final-cta-section h2 {
  text-align: center;
  color: white;
  font-size: 36px;
  margin-bottom: 20px;
}

@keyframes twinkle {
  0% {
    opacity: 0.4;
    transform: scale(0.8);
  }
  100% {
    opacity: 0.9;
    transform: scale(1.1);
  }
}