@charset "UTF-8";

html{
font-size: 62.5%;  
}

*,*::before,*::after{
  box-sizing: border-box;
}

body{
  color: #333;
  background: #fff;
  text-align: center;
  font-size: 1.6rem;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.8;
}

/* ヘッダー改善 */
.header{
  padding: 60px 30px 80px;
  background: linear-gradient(135deg, #fdfcfb 0%, #e2d1c3 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.logo{
  position: absolute;
  top: 20px;
  right: 30px;
  max-width: 150px;
}

/* 緊急バナー */
.urgent-banner{
  background: #ff4444;
  color: #fff;
  padding: 15px 30px;
  border-radius: 8px;
  margin-bottom: 30px;
  animation: pulse 2s infinite;
}

.urgent-text{
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0;
  color: #fff;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

.site-title-sub{
  margin: 20px 0;
  letter-spacing: 2px;
  font-size: 2rem;
  color: #666;
}

.site-title-sub::before,
.site-title-sub::after{
  content: '';
  display: inline-block;
  width: 80px;
  height: 2px;
  margin: 0 20px;
  background-color: #eb6100;
  vertical-align: middle;
}

.site-title{
  margin: 30px 0;
  font-size: 5rem;
  font-weight: bold;
  color: #333;
  line-height: 1.4;
  text-align: center;
}

/* 3つのポイント */
.three-points{
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 40px 0;
}

.point-item{
  text-align: center;
}

.point-item i{
  font-size: 4rem;
  color: #eb6100;
  margin-bottom: 10px;
}

.point-item p{
  font-size: 1.6rem;
  font-weight: bold;
  color: #333;
  margin: 0;
}

/* 無料相談強調 */
.free-consultation{
  font-size: 3rem;
  font-weight: bold;
  color: #ff4444;
  margin: 30px 0;
  background: #fff;
  padding: 15px 40px;
  border-radius: 8px;
  display: inline-block;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* CTAボタン */
.cta-buttons{
  display: flex;
  gap: 20px;
  justify-content: center;
  margin: 30px 0;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 18px 40px;
  font-size: 2rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s;
  text-align: center;
  min-width: 250px;
}

.btn--phone{
  background: #4CAF50;
  color: #fff;
  border: none;
}

.btn--phone:hover{
  background: #45a049;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.btn--orange {
  color: #fff;
  background-color: #eb6100;
  border: none;
}

.btn--orange:hover {
  background: #f56500;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.btn-large{
  font-size: 2.2rem;
  padding: 20px 50px;
}

.business-hours{
  font-size: 1.6rem;
  color: #666;
  margin-top: 20px;
}

/* 実績セクション */
.results{
  padding: 60px 30px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
}

.results-wrapper{
  max-width: 1200px;
  margin: 0 auto;
}

.heading-center{
  font-size: 3rem;
  margin-bottom: 40px;
  color: #fff;
  font-weight: bold;
}

.results-boxes{
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.result-box{
  text-align: center;
  background: rgba(255,255,255,0.1);
  padding: 30px 40px;
  border-radius: 12px;
  min-width: 200px;
}

.result-number{
  font-size: 4rem;
  font-weight: bold;
  margin: 0 0 10px 0;
  color: #fff;
}

.result-label{
  font-size: 1.8rem;
  margin: 0;
  color: #fff;
}

/* 共通見出し */
.heading{
  margin: 30px 0 40px;
  letter-spacing: 2px;
  font-size: 3.5rem;
  color: #333;
  font-weight: bold;
  position: relative;
  padding-bottom: 20px;
}

.heading::after{
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #eb6100;
}

.heading-white{
  margin: 30px 0 40px;
  letter-spacing: 2px;
  font-size: 3.5rem;
  color: #fff;
  font-weight: bold;
}

.heading-red{
  margin: 30px 0 40px;
  letter-spacing: 2px;
  font-size: 3.5rem;
  color: #ff4444;
  font-weight: bold;
}

/* セクション共通 */
section{
  padding: 80px 30px;
}

h3 {
  padding: 0.5em 0.5em;
  color: #333;
  background: transparent;
  border-left: solid 5px #eb6100;
  margin: 20px 0;
  text-align: left;
  font-size: 2.4rem;
  font-weight: bold;
}

p{
  margin: 15px 0;
  color: #333;
  text-align: left;
  font-size: 1.6rem;
  line-height: 1.8;
}

/* コンセプトセクション */
.concept{
  padding: 80px 30px;
  background: #f9f9f9;
}

.concept-wrapper{
  max-width: 900px;
  margin: 50px auto 0;
}

.concept-text{
  text-align: left;
}

.concept-text p{
  margin: 25px 0;
  font-size: 2rem;
}

.checkmark001{
  padding-left: 30px;
  position: relative;
  display: block;
}

.checkmark001:before,
.checkmark001:after{
  content: "";
  display: block;
  position: absolute;
}

.checkmark001:before{
  width: 20px;
  height: 20px;
  background: #fff;
  border: 2px solid #eb6100;
  left: 0;
  top: 4px;
  border-radius: 3px;
}

.checkmark001:after{
  border-left: 3px solid #ff4444;
  border-bottom: 3px solid #ff4444;
  width: 18px;
  height: 8px;
  transform: rotate(-45deg);
  left: 5px;
  top: 8px;
}

.under {
  background: linear-gradient(transparent 60%, #ffeb3b 60%);
  font-weight: bold;
  padding: 0 4px;
}

/* ソリューションセクション */
.concept2{
  padding: 80px 30px;
  background: linear-gradient(135deg, #8e7960 0%, #6f6152 100%);
}

.concept2-wrapper{
  max-width: 1000px;
  margin: 50px auto 0;
}

.lawyer1{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.lawyer-image1{
  border-radius: 50%;
  width: 250px;
  height: 250px;
  object-fit: cover;
  border: 5px solid #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.lawyer-message{
  color: #fff;
  text-align: left;
  max-width: 500px;
}

.message-large{
  font-size: 2.4rem;
  font-weight: bold;
  color: #fff;
  margin: 10px 0;
}

.support-list{
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.support-list li{
  font-size: 1.8rem;
  color: #fff;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

/* 緊急性セクション */
.urgency-section{
  padding: 80px 30px;
  background: #fff5f5;
}

.urgency-wrapper{
  max-width: 1200px;
  margin: 0 auto;
}

.urgency-content{
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.urgency-item{
  flex: 1;
  min-width: 280px;
  background: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
}

.urgency-number{
  width: 60px;
  height: 60px;
  background: #ff4444;
  color: #fff;
  font-size: 3rem;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.urgency-item h3{
  border: none;
  text-align: center;
  font-size: 2.2rem;
  color: #333;
  margin: 20px 0;
}

.urgency-item p{
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.8;
}

/* サービスグリッド */
.explain{
  padding: 80px 30px;
  background: #f9f9f9;
}

.explain-wrapper{
  max-width: 1200px;
  margin: 50px auto 0;
}

.service-intro{
  font-size: 2rem;
  text-align: center;
  margin-bottom: 50px;
  color: #333;
  font-weight: bold;
}

.services-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin: 50px 0;
}

.service-card{
  background: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s;
}

.service-card:hover{
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.service-icon-large{
  font-size: 6rem;
  color: #eb6100;
  margin-bottom: 20px;
}

.service-card h3{
  border: none;
  text-align: center;
  font-size: 2.4rem;
  color: #333;
  margin: 20px 0;
}

.service-card p{
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.8;
  margin: 15px 0;
}

.price-summary{
  font-size: 2rem;
  font-weight: bold;
  color: #eb6100;
  margin-top: 20px;
}

.cta-section{
  text-align: center;
  margin: 60px 0 20px;
  padding: 50px 30px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 12px;
}

.cta-text{
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

/* スキルセクション */
.skills{
  padding: 80px 30px;
  background-color: #fff;
}

.skills-wrapper{
  display: flex;
  justify-content: center;
  gap: 60px;
  max-width: 1200px;
  margin: 50px auto 0;
  flex-wrap: wrap;
}

.skills-box{
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  text-align: center;
}

.skill-icon{
  width: 120px;
  height: 120px;
  margin: 0 auto 30px;
  border: 4px solid #eb6100;
  border-radius: 50%;
  color: #eb6100;
  font-size: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.skills-title{
  margin: 20px 0;
  font-size: 2.2rem;
  font-weight: bold;
  color: #333;
}

.skills-text{
  margin: 20px 0;
  line-height: 1.8;
  text-align: center;
  font-size: 1.6rem;
}

/* フローセクション */
.flow{
  padding: 80px 30px;
  background: #f9f9f9;
}

.flow-wrapper{
  max-width: 1200px;
  margin: 50px auto 0;
}

.flow-steps{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.flow-step{
  flex: 1;
  min-width: 200px;
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
}

.step-number{
  background: #eb6100;
  color: #fff;
  padding: 8px 20px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 15px;
  font-weight: bold;
  font-size: 1.4rem;
}

.flow-step h3{
  border: none;
  text-align: center;
  font-size: 2rem;
  color: #333;
  margin: 15px 0;
}

.flow-step p{
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.7;
}

.flow-arrow{
  font-size: 3rem;
  color: #eb6100;
  font-weight: bold;
  padding: 0 10px;
}

/* 知識ベース */
.knowledge-base{
  padding: 80px 30px;
  background: #fff;
}

.knowledge-wrapper{
  max-width: 1000px;
  margin: 50px auto 0;
}

.knowledge-item{
  background: #f9f9f9;
  padding: 40px;
  margin: 30px 0;
  border-radius: 12px;
  border-left: 5px solid #eb6100;
}

.knowledge-item h3{
  border: none;
  font-size: 2.4rem;
  color: #333;
  margin-bottom: 20px;
}

.knowledge-item h3 i{
  color: #eb6100;
  margin-right: 10px;
}

.knowledge-list{
  list-style: none;
  padding-left: 0;
  margin: 20px 0;
}

.knowledge-list li{
  padding: 12px 0 12px 30px;
  position: relative;
  font-size: 1.6rem;
  border-bottom: 1px solid #ddd;
}

.knowledge-list li:before{
  content: "✓";
  position: absolute;
  left: 0;
  color: #eb6100;
  font-weight: bold;
  font-size: 1.8rem;
}

.warning-text{
  background: #fff3cd;
  border: 2px solid #ffc107;
  padding: 15px;
  border-radius: 8px;
  margin-top: 20px;
  font-weight: bold;
  color: #856404;
}

.cta-knowledge{
  text-align: center;
  margin-top: 50px;
  padding: 40px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 12px;
}

.cta-knowledge p{
  color: #fff;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

/* 料金セクション */
.fee{
  padding: 80px 30px;
  background: #f9f9f9;
}

.fee-wrapper{
  max-width: 1200px;
  margin: 50px auto 0;
}

.fee-note{
  text-align: center;
  font-size: 2rem;
  color: #ff4444;
  font-weight: bold;
  margin-bottom: 50px;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.fee-tables{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin: 40px 0;
}

.fee-table-item{
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.fee-title{
  border: none;
  text-align: center;
  font-size: 2.4rem;
  color: #eb6100;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 3px solid #eb6100;
}

.table3{
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.table3 th{
  background: #eb6100;
  color: #fff;
  padding: 15px;
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
}

.table3 td{
  background: #f9f9f9;
  text-align: center;
  padding: 20px;
  font-size: 2.4rem;
  font-weight: bold;
  color: #333;
  border-bottom: 2px solid #ddd;
}

.fee-detail{
  font-size: 1.4rem;
  color: #666;
  margin-top: 15px;
  line-height: 1.8;
  text-align: center;
}

.fee-consultation{
  text-align: center;
  font-size: 1.8rem;
  margin-top: 40px;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  border: 2px solid #ddd;
}

/* 弁護士紹介 */
.lawyer{
  padding: 80px 30px;
  background: #fff;
}

.lawyer-wrapper{
  max-width: 1000px;
  margin: 50px auto 0;
}

.lawyer-profile{
  display: flex;
  gap: 50px;
  align-items: flex-start;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.lawyer-image{
  width: 250px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.lawyer-info{
  flex: 1;
  min-width: 300px;
}

.lawyer-info h3{
  border: none;
  font-size: 2.4rem;
  color: #333;
  margin-bottom: 10px;
}

.lawyer-affiliation{
  font-size: 1.6rem;
  color: #666;
  margin-bottom: 20px;
}

.lawyer-intro{
  font-size: 1.6rem;
  line-height: 1.8;
}

.lawyer-background{
  background: #f9f9f9;
  padding: 40px;
  border-radius: 12px;
  margin: 40px 0;
}

.career-list{
  list-style: none;
  padding: 0;
}

.career-list li{
  padding: 12px 0;
  border-bottom: 1px solid #ddd;
  font-size: 1.6rem;
}

.contact-banner-lawyer{
  text-align: center;
  margin-top: 50px;
}

/* よくある質問 */
.qa{
  padding: 80px 30px;
  background: #f9f9f9;
}

.qa-wrapper{
  max-width: 900px;
  margin: 50px auto 0;
}

dl.qa {
  overflow: hidden;
}

dl.qa dt {
  background: #eb6100;
  color: #fff;
  padding: 20px;
  margin: 30px 0 0 0;
  font-size: 1.8rem;
  font-weight: bold;
  border-radius: 8px 8px 0 0;
  text-align: left;
}

dl.qa dd {
  background: #fff;
  padding: 30px;
  margin: 0 0 20px 0;
  font-size: 1.6rem;
  line-height: 1.8;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: left;
}

/* お問い合わせ */
.contact{
  padding: 80px 30px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.contact .heading{
  color: #fff;
}

.contact .heading::after{
  background: #fff;
}

.contact-intro{
  max-width: 900px;
  margin: 0 auto 50px;
}

.contact-text-large{
  font-size: 2.4rem;
  color: #fff;
  text-align: center;
  margin-bottom: 50px;
  font-weight: bold;
}

.contact-methods{
  display: flex;
  justify-content: center;
  gap: 60px;
  margin: 50px 0;
  flex-wrap: wrap;
}

.contact-method{
  flex: 1;
  min-width: 280px;
  max-width: 400px;
  background: rgba(255,255,255,0.1);
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
}

.contact-method-icon{
  font-size: 6rem;
  color: #fff;
  margin-bottom: 20px;
}

.contact-method h3{
  border: none;
  color: #fff;
  font-size: 2.2rem;
  margin: 20px 0;
  text-align: center;
}

.contact-method p{
  color: #fff;
  font-size: 1.6rem;
  text-align: center;
  margin: 10px 0;
}

.phone-number-large{
  font-size: 3.5rem;
  font-weight: bold;
  margin: 20px 0;
}

.phone-number-large a{
  color: #fff;
  text-decoration: none;
}

.business-hours-detail{
  font-size: 1.6rem;
  color: rgba(255,255,255,0.9);
}

.response-time{
  font-size: 1.6rem;
  color: rgba(255,255,255,0.9);
}

/* フォーム */
.contact-form{
  max-width: 800px;
  margin: 50px auto 0;
}

.form {
  background-color: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.form dl dt {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 20px 0 10px;
  text-align: left;
  color: #333;
}

.form dl dd {
  margin: 0 0 20px;
}

.form input[type="text"],
.form input[type="tel"],
.form input[type="email"],
.form textarea {
  width: 100%;
  padding: 12px;
  font-size: 1.6rem;
  border: 2px solid #ddd;
  border-radius: 6px;
  transition: border-color 0.3s;
}

.form input[type="text"]:focus,
.form input[type="tel"]:focus,
.form input[type="email"]:focus,
.form textarea:focus {
  outline: none;
  border-color: #eb6100;
}

.form textarea {
  min-height: 150px;
  resize: vertical;
}

.form input[type="radio"]{
  margin: 10px 10px 10px 0;
}

.form-submit{
  text-align: center;
  margin-top: 30px;
}

.btn-submit {
  background-color: #eb6100;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  padding: 18px 60px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-submit:hover {
  background-color: #f56500;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.form .required:after{
  content: " *";
  color: #ff0000;
  font-weight: bold;
}

.attention{
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #ddd;
}

.attention p{
  font-size: 1.4rem;
  color: #666;
  text-align: center;
  margin: 10px 0;
}

/* アクセス */
.access{
  padding: 80px 30px;
  background: #fff;
}

.access-wrapper{
  max-width: 1200px;
  margin: 50px auto 0;
}

.access-map{
  margin-bottom: 50px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.access-info{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.access-detail{
  background: #f9f9f9;
  padding: 30px;
  border-radius: 12px;
}

.access-detail h3{
  border: none;
  font-size: 2.2rem;
  color: #333;
  margin-bottom: 20px;
}

.access-detail h3 i{
  color: #eb6100;
  margin-right: 10px;
}

.phone-large{
  font-size: 2.8rem;
  font-weight: bold;
  color: #eb6100;
  margin: 15px 0;
}

.phone-large a{
  color: #eb6100;
  text-decoration: none;
}

.access-hours{
  font-size: 1.6rem;
  color: #666;
  margin-top: 10px;
}

.access-train-list{
  list-style: none;
  padding: 0;
}

.access-train-list li{
  padding: 12px 0;
  border-bottom: 1px solid #ddd;
  font-size: 1.6rem;
}

.access-train-list li strong{
  color: #eb6100;
}

/* プライバシーポリシー */
.privacy{
  padding: 80px 30px;
  background: #f9f9f9;
}

.privacy-wrapper{
  max-width: 900px;
  margin: 50px auto 0;
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* ページトップボタン */
#page_top{
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
}

#page_top a{
  display: block;
  width: 60px;
  height: 60px;
  background: #eb6100;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: all 0.3s;
}

#page_top a:hover{
  background: #f56500;
  transform: translateY(-2px);
}

#page_top a::after{
  content: '▲';
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* フッター */
footer {
  background: #333;
  padding: 40px 20px;
  text-align: center;
}

footer p {
  color: #fff;
  font-size: 1.4rem;
  margin: 10px 0;
}

/* 矢印 */
.arrow{
  width: 30px;
  height: 30px;
  border: 5px solid;
  border-color: transparent transparent #eb6100 #eb6100;
  transform: rotate(-45deg);
  margin: 20px auto;
}

/* レスポンシブ */
@media(max-width: 768px){
  
  .site-title{
    font-size: 3.5rem;
  }
  
  .site-title-sub::before,
  .site-title-sub::after{
    width: 40px;
    margin: 0 10px;
  }
  
  .heading{
    font-size: 2.8rem;
  }
  
  .heading-white,
  .heading-red,
  .heading-center{
    font-size: 2.8rem;
  }
  
  .three-points{
    gap: 20px;
  }
  
  .point-item i{
    font-size: 3rem;
  }
  
  .free-consultation{
    font-size: 2.2rem;
    padding: 12px 30px;
  }
  
  .cta-buttons{
    flex-direction: column;
    gap: 15px;
  }
  
  .btn{
    min-width: 100%;
    font-size: 1.8rem;
    padding: 15px 30px;
  }
  
  .btn-large{
    font-size: 2rem;
    padding: 18px 40px;
  }
  
  .urgent-text{
    font-size: 1.6rem;
  }
  
  .logo{
    display: none;
  }
  
  .results-boxes{
    gap: 30px;
  }
  
  .result-number{
    font-size: 3rem;
  }
  
  .result-label{
    font-size: 1.6rem;
  }
  
  .concept-text p{
    font-size: 1.8rem;
  }
  
  .lawyer1{
    flex-direction: column;
    gap: 30px;
  }
  
  .lawyer-image1{
    width: 200px;
    height: 200px;
  }
  
  .message-large{
    font-size: 2rem;
    text-align: center;
  }
  
  .support-list{
    text-align: center;
  }
  
  .support-list li{
    font-size: 1.6rem;
  }
  
  .urgency-content{
    gap: 30px;
  }
  
  .urgency-item{
    min-width: 100%;
  }
  
  .services-grid{
    grid-template-columns: 1fr;
  }
  
  .skills-wrapper{
    flex-direction: column;
    gap: 40px;
  }
  
  .skills-box{
    max-width: 100%;
  }
  
  .flow-steps{
    flex-direction: column;
  }
  
  .flow-arrow{
    transform: rotate(90deg);
    margin: 20px auto;
  }
  
  .knowledge-item{
    padding: 25px;
  }
  
  .fee-tables{
    grid-template-columns: 1fr;
  }
  
  .table3 th,
  .table3 td{
    font-size: 1.6rem;
    padding: 12px;
  }
  
  .lawyer-profile{
    flex-direction: column;
    align-items: center;
  }
  
  .lawyer-image{
    width: 200px;
  }
  
  .lawyer-info h3{
    font-size: 2rem;
    text-align: center;
  }
  
  .lawyer-intro{
    text-align: center;
  }
  
  .contact-methods{
    flex-direction: column;
    gap: 30px;
  }
  
  .phone-number-large{
    font-size: 2.8rem;
  }
  
  .form{
    padding: 30px 20px;
  }
  
  .access-info{
    grid-template-columns: 1fr;
  }
  
  #page_top a{
    width: 50px;
    height: 50px;
  }
  
  #page_top a::after{
    font-size: 1.6rem;
  }
}
