* {
      margin: 0;
                    padding: 0;
   box-sizing: border-box;}

:root {
    --primary-color: #1a73e8;
    --secondary-color: #34a853;
    --accent-color: #fbbc04;
    --dark-text: #202124;
    --light-text: #5f6368;
    --border-color: #e8eaed;
    --bg-light: #f8f9fa;
    --transition: all 0.3s ease;
}

html {


 scroll-behavior: smooth;}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--dark-text);
   line-height: 1.6;
  background-color: #fff;
}

.main-header {
  position: sticky;
   top:  0;
  z-index: 1000;
      background: #fff;
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
	
}

.navbar {
    padding: 0;
}


.nav-container {
 max-width: 1200px;
   margin: 0 auto;
       padding  :   16px 24px;
  display    :   flex;
   justify-content: space-between;
    align-items  :        center;
}

.logo-section img


{
   height: 40px;
   width: auto;
  filter: brightness(0) invert(1);
}

.nav-menu{
  display: flex;
    list-style: none;
  gap: 40px;
   align-items :        center;
}  

.nav-link {
  color: var(--dark-text);
  text-decoration: none;
    font-weight  :      500;
  transition: var(--transition);
    position: relative;
}

.nav-link:hover {
	  color: var(--primary-color);
     }

.nav-link::after {
  content: '';
    position: absolute;
  bottom:       -4px;
   left: 0;
    width: 0;
         height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-link:hover::after     {
	width: 100%;
}

.burger-toggle

{
  display: none;
   background: none;
  border: none;
   cursor     :    pointer;
	padding:8px;
}

.burger-toggle img {
   width: 24px;
   height: 24px;
}

.hero-section {

	         max-width: 1200px;
    margin :      0 auto;
  padding: 80px 24px;
				 display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 60px;
    align-items  :  center;}

.hero-content h1 {
	 font-size     :48px;
   font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--dark-text);
}

.hero-subtitle {

   font-size: 18px;
  color: var(--light-text);
  margin-bottom: 32px;
  line-height: 1.7;}

.hero-actions {


	display: flex;
  gap: 16px;
    flex-wrap: wrap;
	


}

.btn-primary{


    display: inline-block;
   padding: 14px 32px;
  background: var(--primary-color);
	color: #fff;
   border-radius    :8px;
   text-decoration    :   none;
  font-weight: 600;
  transition: var(--transition);
  border: 2px solid var(--primary-color);
   cursor: pointer;
   font-size:      16px;

}

.btn-primary:hover   {
  background: #1557b0;
  box-shadow: 0 8px 16px rgba(26, 115, 232, 0.3);
}

.btn-secondary   {

    display: inline-block;
  padding     :   14px 32px;
         background: transparent;
  color: var(--primary-color);
    border-radius    :       8px;
    text-decoration: none;
    font-weight: 600;
  transition: var(--transition);
  border: 2px solid var(--primary-color);
  cursor: pointer;

}

.btn-secondary:hover


{
  background: var(--bg-light);
}

.hero-image img {

   width    :        100%; 
	               height    :       auto; 
	               border-radius: 12px; 
	  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
	}

.services-preview {


  background: var(--bg-light);
	padding :        80px 24px;
     }

.services-preview h2 {
  text-align     :   center;
  font-size: 36px;
   margin-bottom   :     60px;
  color: var(--dark-text);
}

.services-grid {
   max-width: 1200px;
  margin: 0 auto;
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap :  32px;
}

.service-card {
    background:        #fff;
  border-radius: 12px;
    overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.12);


}

.service-card img {
  width: 100%;
   height  :        240px;
   object-fit: cover;

}

.service-card h3 
 {
  padding     :   24px 24px 12px;
    font-size: 22px;
  color: var(--dark-text);
}

.service-card p {

  padding: 0 24px 24px; 
	  color: var(--light-text); 
	  line-height: 1.6;
     }

.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, #1557b0 100%);
    color  :        #fff;
   padding: 80px 24px;
   text-align: center;
}

.cta-content h2 {

   font-size: 42px;
    margin-bottom: 16px;}

.cta-content p {
   font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.btn-large {
  padding: 16px 48px;
	 font-size: 18px;
}

.approach-section {
    max-width: 1200px;
     margin: 0 auto;
    padding: 80px 24px;
}

.approach-section h2 {

	  text-align  :center;
  font-size: 36px;
   margin-bottom    :   60px; 
}

.approach-steps {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 32px;
}

.step-item {
    padding: 32px;
  border: 2px solid var(--border-color);
    border-radius: 12px;
  transition: var(--transition);
    position :   relative;
}

.step-item:hover {
  border-color: var(--primary-color);
  box-shadow: 0 8px 24px rgba(26, 115, 232, 0.15);
}

.step-number {
   	 font-size     : 32px;
   font-weight: 700;
  color: var(--primary-color);
    margin-bottom: 12px;


}

.step-item h3
{
   font-size  :       20px;
    margin-bottom: 12px;
  color: var(--dark-text);
}

.step-item p {
  color: var(--light-text);
    line-height   :    1.6;
}

.testimonials-section {
  background: var(--bg-light);
   padding: 80px 24px;
}

.testimonials-section h2


{
         text-align   : center;
   font-size: 36px;
   margin-bottom: 60px;
}

.testimonials-grid {
    max-width: 1200px;
 margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background     :#fff;
    padding :      32px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.testimonial-text {
   font-size: 16px;
  color: var(--light-text);
   line-height: 1.7;
   margin-bottom: 20px;
    font-style :      italic;
}

.testimonial-author {
               font-weight: 600;
  color: var(--dark-text);
    font-size: 15px;


	}

.conference-promo {
   max-width: 1200px;
   margin  :     0 auto;
    padding: 80px 24px;
  text-align: center;
} 

.conference-promo h2 {
  font-size :  36px;
          margin-bottom: 16px;
}

.conference-promo > p:nth-of-type(1) {
	font-size: 18px;
  color: var(--light-text);
  margin-bottom: 40px;
}

.conference-promo img {
  max-width: 100%;
   height: auto;
   border-radius: 12px;
   margin-bottom: 32px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.conference-desc {
    font-size:   16px;
     color: var(--light-text);
      line-height: 1.7;
      max-width: 600px;
     margin: 0 auto;
}

.contact-section {
  background: var(--bg-light);
    padding: 80px 24px;
     }

.contact-section h2 {
  text-align: center;
  font-size  :      36px;
		 margin-bottom: 16px;
}

.contact-intro {
  text-align: center;
  color: var(--light-text);
       font-size: 18px;
   margin-bottom: 40px;
}

.contact-form {
    max-width   :  600px;
  margin    :   0 auto;
  background: #fff;
  padding: 40px;
   border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.form-group
{
    margin-bottom: 20px;
}

.form-input {


    width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
   border-radius: 8px;
    font-size: 16px;
  font-family: inherit;
  transition: var(--transition);


}  

.form-input:focus {
	 outline  :  none;

  border-color: var(--primary-color);

  box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);


}

.form-textarea		{
	resize: vertical; 
		 min-height: 120px;
}

.btn-submit    {
    width: 100%;
    margin-top: 20px;
} 

.main-footer {
    background    :       #1a1a1a;
    color: #fff;
    padding: 60px 24px 20px;
}

.footer-container {

	  max-width    : 1200px;
    margin: 0 auto;
    display:    grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
   gap: 40px;
	 margin-bottom: 40px;


}

.footer-brand img {
  height   :       40px;
    width: auto;
  filter: brightness(0) invert(1);
         margin-bottom: 20px;
}


.footer-nav h4,
.footer-contact h4,
.footer-additional h4 {
             font-size    :16px;
    margin-bottom: 16px;
  font-weight: 600;

}



.footer-nav ul {
    list-style: none; 
	}

.footer-nav a {
  color: #ccc;
	text-decoration: none;
  transition: var(--transition);
    display: block;
    margin-bottom   :10px;
    font-size: 15px;
}

.footer-nav a:hover {
      color: #fff;
}

.footer-contact p {
    color: #ccc;
	font-size: 15px;
   line-height: 1.6;
   margin-bottom: 10px;
}

.phone-contact {
  color: var(--secondary-color);
    font-weight: 600;
}

.footer-additional p{
     color: #ccc;
   font-size: 14px;
         line-height    :  1.6;
	}

.footer-bottom {
    border-top     :        1px solid #333;
   padding-top: 20px;
   text-align: center;
  color: #999;
  font-size: 14px;

}  @media (max-width: 768px) {
    .hero-section {
        grid-template-columns: 1fr;
        padding: 60px 16px;
        gap: 40px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: #fff;
        padding: 20px;
        gap: 0;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        border-bottom: 1px solid var(--border-color);
        padding: 12px 0;
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .burger-toggle {
        display: block;
    }

    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .approach-steps {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 24px;
    }

    .services-preview h2,
    .approach-section h2,
    .testimonials-section h2,
    .contact-section h2 {
        font-size: 28px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .conference-promo h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .nav-container {
        padding: 12px 16px;
    }

    .logo-section img {
        height: 32px;
    }

    .services-preview,
    .approach-section,
    .testimonials-section,
    .conference-promo,
    .contact-section {
        padding: 40px 16px;
    }

    .main-footer {
        padding: 40px 16px 16px;
    }

    .footer-container {
        gap: 24px;
    }
}.services-hero {
  background: linear-gradient(135deg, #1a73e8 0%, #1557b0 100%);
    color: #fff;
               padding: 80px 24px;
   text-align: center;
}

.services-hero h1 {
	 font-size: 48px;
    font-weight: 700;
  margin-bottom: 16px;


}



.services-hero p {
    font-size: 18px;
  opacity: 0.95;
} 

.services-detailed  
  {
    max-width:     1200px;
  margin     :        0 auto;
 padding    :80px 24px;
}

.service-detailed-item   {

    display  :      grid;
   grid-template-columns: 1fr 1fr;
    gap    :  60px;
   align-items: center;
       margin-bottom: 100px;
	}

.service-detail-reverse {
   grid-template-columns: 1fr 1fr;
}

.service-detail-reverse .service-detail-image {
    order: -1;
}

.service-detail-content h2 {
    font-size: 32px;
	color: #202124;
   margin-bottom: 20px;
}

.service-detail-content > p:first-of-type {
   color: #5f6368;
         font-size  :  16px;
    line-height: 1.8;
   margin-bottom: 24px;
}

.service-features {
   list-style: none;
    margin: 24px 0;
}

.service-features li {

   padding: 10px 0;
	 padding-left: 30px;
  position  :      relative;
  color: #5f6368;
  line-height:    1.6;

}

.service-features li::before {
  content: '';
   position: absolute;
    left: 0;
   top: 50%;
  transform: translateY(-50%);
    width: 8px;
   height: 8px;
    background: #34a853;
  border-radius: 50%;
}

.service-price {

    font-size: 20px;
         font-weight: 600;
      color: #1a73e8;
        margin-top: 24px;

}

.service-detail-image img {
   width: 100%;
	height: auto;
    border-radius  :    12px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}


.service-packages     {


    background: #f8f9fa;
   padding: 80px 24px;
}

.service-packages h2 {
     text-align: center;
   font-size: 36px;
    margin-bottom: 16px;


}

.service-packages > p {
   text-align: center;
  color: #5f6368;
   margin-bottom: 60px;
    font-size: 16px;
}

.packages-grid {
    max-width: 1200px;
  margin :        0 auto;
  display     :        grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 32px;
}

.package-card {
	background  :     #fff;
   border-radius: 12px;
	padding: 40px 32px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
   position: relative;
}

.package-card:hover {
    border-color: #1a73e8;
  box-shadow: 0 12px 24px rgba(26, 115, 232, 0.15);
  transform: translateY(-4px);
}

.package-featured  {
    border-color: #1a73e8;
  box-shadow: 0 12px 32px rgba(26, 115, 232, 0.2);
  transform: scale(1.02);
}

.package-badge {
     position: absolute;
      top: 20px;
          right: 20px;
     background: #34a853;
      color: #fff;
       padding: 6px 12px;
     border-radius: 20px;
     font-size   :       12px;
      font-weight :      600;
} 

.package-badge-featured {
               background: #1a73e8; 
	
}

.package-card h3     {
  font-size: 24px; 
    margin: 30px 0 8px; 
	color    :  #202124;
}

.package-duration


{
	   color  :   #5f6368;
   font-size: 14px;
    margin-bottom: 24px; 
	


}


.package-features {
    list-style: none;
   margin: 24px 0;
} 

.package-features li {
   padding    : 10px 0;
  color: #5f6368;
    font-size: 15px;
    line-height:  1.6;
   padding-left: 24px;
    position: relative;
}

.package-features li::before {
	  content: '';
  position: absolute;
               left: 0;
   top:    50%;
  transform: translateY(-50%);
          width: 6px;
      height     :       6px;
    background: #1a73e8;
   border-radius: 50%;
	}

.package-price
	{
  font-size: 32px;
   font-weight: 700;
    color: #1a73e8;
  margin-top: 32px;


}

.service-comparison {
	   max-width:        1200px;
  margin: 0 auto;
      padding: 80px 24px;
	}

.service-comparison h2 {
    font-size: 36px;
	margin-bottom: 60px;
    text-align: center; 
	
}  

.comparison-table {
  overflow-x    : auto;
}

table
	{
  width: 100%;
	 border-collapse: collapse; 

	}

table thead {
	 background: #f8f9fa;
}

table th {
   padding: 16px;
    text-align   :       left;
   font-weight: 600;
  color: #202124;
    border-bottom: 2px solid #e8eaed;
}

table td {
   padding: 16px;
	 border-bottom    :  1px solid #e8eaed;
   color    :    #5f6368;
}

table tbody tr:hover
{
		background: #f8f9fa;

}

.service-faq {
    background: #f8f9fa; 
    padding: 80px 24px;
     }

.service-faq h2 {

	   text-align: center;

			font-size: 36px;

	   margin-bottom    :       60px;

}

.faq-list 
 {


    max-width: 800px;
		margin:      0 auto;

}

.faq-item {
  margin-bottom: 16px; 
	
}

.faq-question {
    width :100%;
  background: #fff;
     border: 1px solid #e8eaed;
    padding: 20px;
    border-radius: 8px;
  cursor: pointer;
   display:      flex;
  justify-content: space-between;
  align-items : center;
        font-size: 16px;
    font-weight: 600;
  color: #202124;
               transition: all 0.3s ease;
}  

.faq-question:hover    {
    border-color: #1a73e8;
                    background: #f8f9fa;
}

.faq-question.active {
       border-color  :     #1a73e8;
    background    :       #fff;


} 

.faq-icon {
	    transition   :      transform 0.3s ease;
	 height: 20px;
    width: 20px;
	}

.faq-question.active .faq-icon {
  transform: rotate(180deg);
	
}

.faq-answer {
   display    :      none;
               background :        #fff;
  border: 1px solid #e8eaed;
    border-top: none;
     padding     :      20px;
       border-radius: 0 0 8px 8px;
    color:   #5f6368;
    line-height: 1.7;
}

.faq-answer.active {
   	display: block;


}

.service-cta {
  background: linear-gradient(135deg, #1a73e8 0%, #1557b0 100%);
   color: #fff;
   padding: 80px 24px;
         text-align: center;
}

.service-cta h2 {
    font-size: 42px;
  margin-bottom: 16px;
}

.service-cta > p {
   font-size: 18px;
  margin-bottom     :   40px;
   opacity: 0.95;
}

.service-cta-buttons	{
    display: flex;
       gap: 16px;
       justify-content: center;
      flex-wrap: wrap;
}

.thankyou-section {
       min-height  :   80vh;
   display: flex;
   align-items: center;
			padding: 80px 24px;
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
	}

.thankyou-container {
	max-width: 900px;
   margin     :   0 auto;
  width: 100%;
}

.thankyou-icon  
  {
    text-align: center;
  margin-bottom: 40px;
}

.thankyou-icon img {
  width: 80px;
  height  :       80px;
  filter: drop-shadow(0 4px 8px rgba(52, 168, 83, 0.3));
}

.thankyou-section h1
{
    text-align: center;
    font-size: 48px;
       font-weight: 700;
    margin-bottom: 16px;
	 color:    #202124;
}

.thankyou-subtitle {
  text-align: center;
   font-size: 18px;
		color: #5f6368;
  margin-bottom: 60px;
}

.thankyou-content {
 display :    grid;
               grid-template-columns   :      2fr 1fr;
  gap: 40px;
					margin-bottom: 60px;
	
}

.thankyou-info-block h2 {
			font-size: 28px;
  margin-bottom: 32px;
   color: #202124;
}


.info-steps {
  display: flex;
   flex-direction: column;
  gap: 20px;
}

.step     {

	   display: flex;
   gap: 20px;
   align-items :   flex-start;}

.step-icon {
   width: 40px;
  height: 40px;
  background: #1a73e8;
    color: #fff;
   border-radius: 50%;
    display: flex;
   align-items  : center;
    justify-content:      center;
	font-weight: 600;
   flex-shrink: 0;
}

.step p {
	color     :     #5f6368;
   line-height: 1.6;
  padding-top: 4px;
}

.thankyou-side-block {
   background: #fff;
   border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08); 
	
}

.thankyou-side-block h3 {

   font-size: 20px;
    margin-bottom    :        16px;
   color: #202124;


}

.thankyou-side-block p {
    color: #5f6368;
    margin-bottom: 24px;
  line-height: 1.6;
}

.thankyou-actions {
	display: flex;
   flex-direction: column;
       gap: 12px;
	
}

.thankyou-actions .btn-primary,
.thankyou-actions .btn-secondary {
   	width: 100%;
  text-align    :      center;
	}

.thankyou-faq-preview {

	    background: #fff;
  border-radius    :   12px;
	padding: 40px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);


}

.thankyou-faq-preview h2 {
    font-size: 28px;
   margin-bottom  :      32px;
    text-align: center;
}



.faq-preview-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
   gap: 24px;
}

.faq-preview-card {
  padding: 24px;
   background: #f8f9fa;
		 border-radius  :       8px;
}

.faq-preview-card h4		{
    font-size: 16px;
    margin-bottom: 12px;
  color: #202124;
}

.faq-preview-card p {
               color: #5f6368;
  line-height: 1.6;
   font-size: 14px; 
	
}

.thankyou-benefits {
       max-width: 1200px;
   margin: 0 auto;
   padding: 80px 24px; 
	
}

.thankyou-benefits h2 {
   text-align: center;
         font-size :     36px;
  margin-bottom: 60px;
}

.benefits-grid     {
        display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	 gap: 32px;
}

.benefit-item
	{
   text-align: center;
   padding: 32px;
   border-radius  :  12px;
     background    :      #f8f9fa;
  transition: all 0.3s ease;


}

.benefit-item:hover {
    background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

.benefit-number {
    font-size: 40px;
  font-weight: 700;
     margin-bottom: 12px;
    color    :#1a73e8;
}

.benefit-item p {
         color: #5f6368;
  line-height: 1.6;
}
@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 32px;
    }

    .service-detailed-item {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }

    .service-detail-reverse .service-detail-image {
        order: 0;
    }

    .service-detail-content h2 {
        font-size: 24px;
    }

    .thankyou-content {
        grid-template-columns: 1fr;
    }

    .thankyou-section h1 {
        font-size: 32px;
    }

    .faq-preview-grid {
        grid-template-columns: 1fr;
    }

    .info-steps {
        gap: 16px;
    }

    .service-packages > p,
    .service-cta > p {
        font-size: 16px;
    }

    .service-cta-buttons {
        flex-direction: column;
    }

    .service-cta-buttons .btn-primary,
    .service-cta-buttons .btn-secondary {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .services-hero {
        padding: 40px 16px;
    }

    .services-hero h1 {
        font-size: 24px;
    }

    .services-detailed {
        padding: 40px 16px;
    }

    .service-detailed-item {
        margin-bottom: 40px;
    }

    .service-detail-content h2 {
        font-size: 20px;
    }

    .service-packages {
        padding: 40px 16px;
    }

    .packages-grid {
        gap: 20px;
    }

    .package-card {
        padding: 24px 16px;
    }

    .service-comparison {
        padding: 40px 16px;
    }

    .service-faq {
        padding: 40px 16px;
    }

    .faq-list {
        padding: 0;
    }

    .thankyou-section {
        padding: 40px 16px;
    }

    .thankyou-icon img {
        width: 60px;
        height: 60px;
    }

    .step-icon {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .thankyou-side-block {
        padding: 20px;
    }

    .thankyou-faq-preview {
        padding: 24px;
    }

    .thankyou-benefits {
        padding: 40px 16px;
    }

    .benefit-number {
        font-size: 32px;
    }
}.policy-section {
	padding: 80px 24px;
   background: #f8f9fa;
    min-height: 70vh;
}

.policy-container {
  max-width: 900px;
  margin:        0 auto;
  text-align: left;
  background: #fff;
  padding: 60px;
    border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.policy-container h1 {

   font-size: 42px;
   color: #202124;
   margin-bottom:        40px;
  font-weight: 700;
   border-bottom: 3px solid #1a73e8;
	 padding-bottom   :        20px;
}

.policy-container h2 {
  margin-top: 32px;
    color: #202124;
   margin-bottom: 16px;
    font-size: 24px;
    font-weight: 600;
}

.policy-container p {
	color: #5f6368;
    margin-bottom: 16px;
    line-height: 1.8;
  font-size:     16px;
}

.policy-container p strong {
	color: #202124;
         font-weight: 600;
}

.policy-container ul {
	list-style  :none;
  margin:       20px 0;
   padding-left: 0;
}

.policy-container li {
  color: #5f6368;
     margin-bottom: 12px;
  line-height: 1.7;
	 padding-left   :       24px;
    position :     relative;
}

.policy-container li::before{
  content: '';
   position: absolute;
    left  :        0;
       top  :    8px;
    width: 8px;
    height: 8px;
  background: #1a73e8;
  border-radius   :   50%;
}

.policy-container h1 + h2 {
   	 margin-top: 0;}@media (max-width: 768px) {
    .policy-section {
        padding: 60px 16px;
    }

    .policy-container {
        padding: 40px 24px;
        border-radius: 8px;
    }

    .policy-container h1 {
        font-size: 32px;
        margin-bottom: 32px;
    }

    .policy-container h2 {
        font-size: 20px;
        margin-top: 28px;
        margin-bottom: 14px;
    }

    .policy-container p {
        font-size: 15px;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .policy-section {
        padding: 40px 12px;
    }

    .policy-container {
        padding: 24px 16px;
        border-radius: 8px;
    }

    .policy-container h1 {
        font-size: 24px;
        margin-bottom: 24px;
        padding-bottom: 16px;
    }

    .policy-container h2 {
        font-size: 18px;
        margin-top: 24px;
        margin-bottom: 12px;
    }

    .policy-container p {
        font-size: 14px;
        margin-bottom: 14px;
        line-height: 1.6;
    }

    .policy-container li {
        padding-left: 20px;
        font-size: 14px;
        margin-bottom: 10px;
    }
}@media (min-width: 769px) and (max-width: 1024px) {
    .policy-container {
        max-width: 100%;
        padding: 50px;
    }

    .policy-container h1 {
        font-size: 36px;
    }

    .policy-container h2 {
        font-size: 22px;
    }
}

@media print {
    .policy-section {
        background: #fff;
        padding: 0;
    }

    .policy-container {
        box-shadow: none;
        padding: 0;
    }

    .policy-container h1 {
        border-bottom: 1px solid #ddd;
    }
}