* {

	    margin: 0;
   padding: 0;
   box-sizing  :      border-box;
     }

html {
	scroll-behavior: smooth;
}

body		{
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
	color: #2c3e50;
    line-height: 1.6;
   background    :       #ffffff;
}

a {
 text-decoration:     none;
   color: inherit;
}

button {
     font-family: inherit;
  border: none;
   cursor  :       pointer;
}

.main-navigation {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	padding: 1rem 0;
   position: sticky;
  top: 0;
    z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width   :        1200px;
  margin: 0 auto;
	padding:   0 20px;
    display: flex;
   justify-content: space-between;
   align-items: center;


}

.nav-logo img
	{
   height: 50px; 
  filter: brightness(0) invert(1);


}

.nav-links  {
   display: flex;
    list-style  :   none;
    gap: 2rem;
}

.nav-links a

{

	    color: #ffffff;
    font-weight: 500;
  transition: opacity 0.3s ease;
	 font-size :     1rem;
}

.nav-links a:hover {
   opacity   :   0.8;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
   gap: 5px;
}

.nav-toggle span {
    width: 25px;
  height: 3px;
  background   :#ffffff;
     border-radius: 2px;
	 transition: all 0.3s ease;
}@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        gap: 1rem;
        padding: 2rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-links.active {
        max-height: 300px;
    }
}.hero-banner {
	   display    :flex;
         align-items: center;
  justify-content: space-between;
               max-width     :   1200px;
	margin: 0 auto;
  padding: 4rem 20px;
   gap    :3rem;
	min-height: 600px;
}

.hero-content {
   flex: 1;
}

.hero-content h1 {
  font-size  :     3.5rem;
  font-weight: 700;
    margin-bottom: 1rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-clip: text;
   line-height   :  1.2;
}  

.hero-subtitle  
  {
	font-size: 1.3rem;
  color: #555;
  margin-bottom: 2rem;
   line-height: 1.6;
}

.cta-button {
    display: inline-block;
   padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
    border-radius: 50px;
   font-weight: 600;
   transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.cta-button:hover {
     transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.hero-image
{


    height    :        auto;
   max-width: 500px;
      border-radius: 15px;
    object-fit: cover;
   width: 100%;
    flex: 1;
}@media (max-width: 968px) {
    .hero-banner {
        flex-direction: column;
        min-height: auto;
        padding: 3rem 20px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-image {
        max-width: 100%;
    }
}.section-container	{
    max-width     :   1200px;
    margin    :    0 auto;
   padding: 0 20px;
}

.services-overview {

    background: #f8f9fa;
    padding: 5rem 0;

}  

.services-overview h2	{
  font-size: 2.5rem;
          margin-bottom: 3rem;
   text-align: center;
    color: #2c3e50; 
	
}

.services-grid {
      display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2rem;
}

.service-card {
  background: #ffffff;
   padding: 2rem;
   border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
   transition: all 0.3s ease;
     border-left: 4px solid #667eea;
}

.service-card:hover{

  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.service-card h3 {
  margin-bottom: 1rem;
  font-size :1.3rem;
    color     :#2c3e50;
}

.service-card p {
    color: #666;
  line-height: 1.7;


}

.expertise-showcase {
  padding: 5rem 0;
    background: #ffffff;
}

.showcase-container {
    display    :    flex;
    align-items: center;
    gap:    3rem;
	 max-width: 1200px;
  margin: 0 auto;
   padding  : 0 20px;
}

.showcase-image {
    max-width   :        500px;
	 flex: 1;
    border-radius: 15px;
   width: 100%;
  object-fit: cover;

}

.showcase-text {
   flex:     1;
}

.showcase-text h2 {
  font-size    :     2.2rem;
  margin-bottom: 1.5rem;
    color: #2c3e50;
   line-height: 1.3;
}

.showcase-text p {
   font-size: 1.1rem;
   color: #555;
       margin-bottom: 2rem;
   line-height: 1.8;
}

.feature-list {
   list-style: none;
}

.feature-list li    {
    padding: 0.8rem 0;
	padding-left: 2rem;
  position: relative;
      color  :      #333;
  font-weight: 500;
}

.feature-list li:before {
      position: absolute;
                    left: 0;
  font-size  : 1.5rem;
    color: #667eea;
  content: "▸";
	}@media (max-width: 968px) {
    .showcase-container {
        flex-direction: column;
        gap: 2rem;
    }

    .showcase-image {
        max-width: 100%;
    }

    .showcase-text h2 {
        font-size: 1.8rem;
    }
}.workspace-gallery  {
    padding  : 5rem 0;
   background: #f8f9fa;
}

.workspace-gallery h2 {
  font-size: 2.5rem;
	 margin-bottom: 3rem;
  text-align: center;
    color: #2c3e50;
}

.gallery-grid

{
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
}

.gallery-item {
    width: 100%;
  height: 300px;
   object-fit: cover;
   border-radius: 10px;
   transition: all 0.3s ease;
}

.gallery-item:hover {
	  transform: scale(1.03);}

.cta-conversion {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 4rem 20px;
  text-align: center;
    color: #ffffff;
}

.cta-container {
    max-width: 800px;
   margin   :0 auto;
}

.cta-conversion h2 {
    font-size: 2.5rem;
   margin-bottom: 1rem;
}

.cta-conversion p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-button-secondary {
                    display: inline-block;
  padding: 1rem 2.5rem;
    background: #ffffff;
	color :  #667eea;
   border-radius: 50px;
  font-weight: 600;
    transition    : all 0.3s ease;
}  

.cta-button-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.contact-section {
  background: #ffffff;
	   padding: 5rem 20px;
}

.contact-section h2
	{

	          margin-bottom: 3rem;
    text-align: center;
    color: #2c3e50;
	font-size: 2.5rem;


}

.contact-form {


   max-width: 700px;
	    margin: 0 auto;
	  background: #f8f9fa;
	    padding   :   3rem;
	    border-radius: 15px;


     }

.form-group {


    margin-bottom: 1.5rem;}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 1rem;
   border: 1px solid #ddd;
  border-radius  :    8px;
   font-family: inherit;
    font-size: 1rem;
    transition:     all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus  {
	outline: none;

    border-color: #667eea;

  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}



.submit-button {
  width: 100%;
                    padding: 1rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border-radius: 8px;
  font-weight: 600;
    font-size    :      1rem;
     transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.main-footer {

		 background     :      #2c3e50;
   color: #ecf0f1;
  padding: 4rem 20px 2rem;
     }

.footer-container {


    max-width   :    1200px;
   margin: 0 auto;
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
	


}

.footer-logo {

	       height: 60px;
  filter: brightness(0) invert(1);
   margin-bottom  :     1rem;
     }

.footer-column h4 {
	font-size     :   1.2rem; 
   margin-bottom:      1rem; 
   color: #ffffff;


}

.footer-column ul {
	    list-style: none;
}

.footer-column ul li {
   margin-bottom   :     0.8rem;
}



.footer-column a {
   color: #bdc3c7;
  transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #667eea;
}

.footer-column p {
    color: #bdc3c7;
      line-height:     1.8;
   margin-bottom :   0.5rem;
}

.footer-bottom
	{


  text-align: center;
	padding-top: 2rem;
  border-top: 1px solid #34495e;
  color: #95a5a6;
     }@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .services-overview h2,
    .workspace-gallery h2,
    .cta-conversion h2,
    .contact-section h2 {
        font-size: 1.8rem;
    }

    .contact-form {
        padding: 2rem;
    }
}.services-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding: 4rem 20px;
    text-align :     center;
    color:    #ffffff;
  min-height: 300px;
  display: flex;
   align-items     :        center;
  justify-content: center; 

}

.services-header-content {
   max-width: 800px;
}

.services-header h1 {
	 font-size   : 3rem;
		margin-bottom: 1rem;
    font-weight: 700;
}

.services-header-subtitle {


    font-size :1.3rem;
    opacity: 0.95;
   line-height: 1.7;

     }

.services-main {
    padding: 5rem 0;
  background: #ffffff; 

}

.services-detailed    {
  display:  flex;
    flex-direction: column;
  gap: 4rem;
}

.service-detail-card {
    display: flex;
   gap: 3rem;
	align-items:       flex-start;
   background: #f8f9fa;
   padding: 3rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.service-detail-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.service-detail-card.alt-layout {
	 flex-direction: row-reverse; 
	
}

.service-detail-image 
 {

   flex: 0 0 40%;
    min-width: 300px;
     }

.service-image     {


    border-radius: 12px;
    width: 100%;
    height: 350px;
   object-fit: cover;}

.service-detail-content{
	 flex: 1;
}

.service-detail-content h2 {
        font-size: 2rem;
   margin-bottom: 1rem;
    color: #2c3e50;
}

.service-intro {
  font-size     : 1.1rem;
   color: #555;
    margin-bottom:        2rem;
       line-height: 1.8;
}

.service-features {
  margin-bottom: 2rem;
}

.service-features h3 {
   font-size: 1.2rem;
         margin-bottom: 1rem;
  color: #2c3e50;
}

.feature-checklist {
   gap: 0.8rem;
	flex-direction: column;
  list-style   :     none;
  display: flex;

}

.feature-checklist li	{
  padding-left    : 2rem;
       position: relative;
     color: #666;
     line-height: 1.6;
	
}

.feature-checklist li:before {
  content: "✓";
   position: absolute;
     left: 0;
       color: #667eea;
   font-weight: bold;
    font-size: 1.2rem;


}

.service-details-meta
{
	  display: flex;
    gap: 2rem;
   flex-wrap   :wrap;
  margin-top: 2rem;
   padding-top: 2rem;
  border-top: 1px solid #ddd;


}

.service-duration,
.service-format {
      display   :        flex;
   flex-direction: column;
  font-size: 0.95rem;
    color: #666;
	}

.service-duration:before,
.service-format:before {
  font-weight: 600;
  color: #2c3e50;
   margin-bottom: 0.3rem;
}

.service-duration:before {
  content: "Длительность";
}

.service-format:before  {

  content: "Формат";
     }

.service-comparison


{
    background: #f8f9fa;
   padding: 5rem 0;
}

.service-comparison h2 {
       font-size: 2.5rem;
	margin-bottom: 3rem;
   text-align: center;
   color  : #2c3e50;
}

.comparison-table-wrapper  {
    overflow-x: auto;
}

.comparison-table {
    width: 100%; 
    border-collapse: collapse; 
    background  :      #ffffff; 
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); 
   border-radius: 10px; 
   overflow    :  hidden;
}

.comparison-table thead 
 {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     color    :     #ffffff;
}

.comparison-table th {
        padding: 1.5rem;
    text-align: left;
    font-weight     :600;
}

.comparison-table td {
   padding    :   1.5rem;
   border-bottom: 1px solid #eee;
}

.comparison-table tbody tr:hover {
  background: #f8f9fa;
}


.feature-name {
   font-weight    :     600; 
    color    :      #2c3e50; 
    width: 25%;
}

.feature-check {
   text-align: center;
	color: #667eea;
    font-weight: 600;
  font-size: 1.2rem;
	
}

.benefits-highlight {
  background: #ffffff;
                    padding: 5rem 0;
}

.benefits-highlight h2 {
   font-size: 2.5rem;
     margin-bottom: 3rem;
               text-align: center;
  color   :    #2c3e50;
}

.benefits-grid	{
      display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2.5rem; 

	}



.benefit-item {
   background: #f8f9fa;
   padding: 2.5rem;
    border-radius     :       12px;
    text-align: center;
    transition: all 0.3s ease;
  border-top: 4px solid transparent;
    border-top-color: #667eea;
}

.benefit-item:hover  {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.benefit-number {
    font-size: 3rem;
    font-weight: 700;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  background-clip: text;
    margin-bottom : 1rem;
}

.benefit-item h3 {

  margin-bottom: 1rem;
	font-size   :        1.3rem;
   color: #2c3e50;
}

.benefit-item p {
    color: #666;
   	line-height     :1.7;
}

.cta-services {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	    padding: 4rem 20px;
	 text-align: center;
	  color: #ffffff;
}

.cta-services h2 {
  font-size: 2.5rem;
	margin-bottom: 1rem;
}

.cta-services p {
	font-size: 1.2rem;
               margin-bottom    :   2rem;
   opacity: 0.95;
}

.thankyou-wrapper {
    padding: 4rem 20px;
    background: #ffffff;
	min-height: 600px;
}


.thankyou-container {
  max-width    :1200px;
    margin: 0 auto;
  display: grid;
   grid-template-columns: 1fr 1fr;
    gap: 4rem;
  align-items: center;
}

.thankyou-content {
                    flex-direction     :      column;
         display: flex;
}

.success-icon {
  width: 100px;
         height    :100px;
	 margin-bottom: 2rem;
   color: #2ecc71;
}

.success-icon svg {
    width: 100%;
	 height: 100%;
}

.thankyou-wrapper h1 {
   font-size:    3rem;
     color: #2c3e50;
    margin-bottom: 1rem;
    font-weight :700; 

}

.thankyou-subtitle
	{
    font-size: 1.2rem;
   color: #666;
   margin-bottom: 2.5rem;
        line-height: 1.8;
}  

.thankyou-message {
   background: #f8f9fa;
	padding: 2.5rem;
   border-radius: 12px;
    margin-bottom: 2rem;
}

.thankyou-message h2 {
    font-size: 1.5rem;
   color: #2c3e50;
        margin-bottom: 1.5rem;
}

.next-steps    {
  list-style: none;
    display: flex;
 flex-direction: column;
	 gap: 1.5rem;
	
}

.next-steps li {
   display: flex;
   gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
  display: flex;
    align-items: center;
    justify-content: center;
        width: 50px;
   height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color   :     #ffffff;
   border-radius :        50%;
   font-weight: 700;
   font-size  : 1.3rem;
  flex-shrink: 0;
}

.step-content h3{
  font-weight: 600;
  color: #2c3e50;
    margin-bottom: 0.5rem;
}

.step-content p {
   color: #666;
       font-size: 0.95rem;
}

.thankyou-info-box 
 {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  border-left: 4px solid #667eea;
   padding: 2rem;
   border-radius: 8px;
   margin-bottom: 2rem;
}

.thankyou-info-box h3 {
 color: #2c3e50;
  margin-bottom: 1rem;
}  

.thankyou-info-box p {
   color: #666;
        margin-bottom: 0.5rem;
}

.contact-phone {
  font-size: 1.3rem;
  font-weight: 600;
   color: #667eea;
    margin-top: 1rem;
}

.contact-address {
    font-size: 0.95rem;
    color :        #666;
} 

.thankyou-actions {
  display :       flex;
       flex-wrap: wrap;
   gap: 1.5rem;
}

.action-button {
    padding     :   1rem 2rem;
   border-radius: 8px;
	font-weight: 600;
    transition: all 0.3s ease;
  display: inline-block;
    text-align: center;
}

.action-button.primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}  

.action-button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.action-button.secondary {
  background: #f8f9fa;
   color: #667eea;
   border: 2px solid #667eea;
}

.action-button.secondary:hover {


    background     : #667eea;
   color: #ffffff;}

.thankyou-image {
 width   : 100%;
   height: 500px;
  object-fit: cover;
    border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.faq-section 
 {
  padding    :        5rem 0;
	 background    :   #f8f9fa;
}

.faq-section h2 {
          font-size: 2.5rem;
  margin-bottom: 3rem;
   text-align   :    center;
    color   :   #2c3e50;
}

.faq-grid     {
    display :        grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap   :        2rem;
}

.faq-item {
   background: #ffffff;
  padding: 2rem;
    border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #667eea;
}

.faq-item:hover
	{
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.faq-item h3 {
    font-weight: 600;
  color: #2c3e50;
   font-size  :        1.1rem;
    margin-bottom: 1rem; 

}

.faq-item p {
    color    :#666;
      line-height    :     1.7;
  font-size: 0.95rem;
	
} @media (max-width: 1024px) {
    .service-detail-card {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem;
    }

    .service-detail-card.alt-layout {
        flex-direction: column;
    }

    .service-detail-image {
        flex: 1;
        min-width: auto;
    }

    .service-image {
        height: 300px;
    }

    .thankyou-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .thankyou-image {
        height: 350px;
        order: -1;
    }

    .services-header h1 {
        font-size: 2.2rem;
    }

    .services-header-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .service-details-meta {
        flex-direction: column;
        gap: 1rem;
    }

    .comparison-table {
        font-size: 0.9rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 1rem;
    }

    .benefits-grid {
        gap: 1.5rem;
    }

    .benefit-number {
        font-size: 2rem;
    }

    .thankyou-actions {
        flex-direction: column;
    }

    .action-button {
        width: 100%;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .services-header h1 {
        font-size: 1.8rem;
    }

    .service-detail-card {
        padding: 1.5rem;
    }

    .service-detail-content h2 {
        font-size: 1.5rem;
    }

    .thankyou-wrapper h1 {
        font-size: 2rem;
    }

    .success-icon {
        width: 80px;
        height: 80px;
    }

    .service-comparison h2,
    .benefits-highlight h2,
    .faq-section h2 {
        font-size: 1.8rem;
    }

    .comparison-table-wrapper {
        font-size: 0.85rem;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}.policy-section {
         padding  :   80px 2rem;
		 background: #f8f9fa;
		min-height: 600px;
}

.policy-container {
  max-width:900px;
  margin: 0 auto;
  text-align: left;
  background :      #ffffff;
    padding: 4rem;
    border-radius :       12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.policy-container h1 {
  font-size: 2.8rem;
   color: #2c3e50;
   margin-bottom: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-clip: text;
}

.policy-container h2 {
  font-size: 1.8rem; 
	   color: #2c3e50; 
	         margin-top: 2.5rem; 
	   margin-bottom: 1rem; 
	  font-weight    :        600; 
	   border-bottom: 2px solid #667eea; 
	               padding-bottom: 0.8rem;
}

.policy-container p  {
		color: #555;
  margin-bottom     :       1.5rem;
   line-height: 1.9;
   font-size: 1.05rem;
  text-align: justify;
	
}

.policy-container h2:first-of-type {
   margin-top: 1.5rem;
}

.policy-container a {
  color: #667eea;
	transition: color 0.3s ease;
  text-decoration: none;
   border-bottom: 1px solid transparent;
}

.policy-container a:hover {
      color: #764ba2;
    border-bottom: 1px solid #764ba2;}

.policy-container ul {
  list-style-position: inside;
    margin-bottom: 1.5rem;
	
}

.policy-container li {
  line-height: 1.8;
    color: #555;
    margin-bottom: 0.8rem;
}@media (max-width: 1024px) {
    .policy-container {
        padding: 3rem;
        max-width: 100%;
    }

    .policy-container h1 {
        font-size: 2.3rem;
    }

    .policy-container h2 {
        font-size: 1.6rem;
    }

    .policy-container p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .policy-section {
        padding: 60px 1rem;
        min-height: auto;
    }

    .policy-container {
        padding: 2rem;
        border-radius: 8px;
    }

    .policy-container h1 {
        font-size: 1.9rem;
        margin-bottom: 1.5rem;
    }

    .policy-container h2 {
        font-size: 1.4rem;
        margin-top: 1.8rem;
        margin-bottom: 0.8rem;
    }

    .policy-container p {
        font-size: 0.95rem;
        line-height: 1.7;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .policy-section {
        padding: 40px 0.5rem;
    }

    .policy-container {
        padding: 1.5rem;
        border-radius: 6px;
        margin: 0 0.5rem;
    }

    .policy-container h1 {
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
    }

    .policy-container h2 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
        padding-bottom: 0.5rem;
    }

    .policy-container p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        line-height: 1.6;
    }

    .policy-container ul {
        margin-bottom: 1rem;
    }

    .policy-container li {
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
    }
}

@media print {
    .main-navigation,
    .main-footer {
        display: none;
    }

    .policy-section {
        padding: 2rem 0;
        background: #ffffff;
    }

    .policy-container {
        box-shadow: none;
        padding: 0;
        background: transparent;
    }

    .policy-container h2 {
        page-break-after: avoid;
    }

    .policy-container p {
        page-break-inside: avoid;
    }
}