* {
  margin: 0;
    padding: 0;
   box-sizing     :border-box;
}

body {
  font-family: 'Arial', sans-serif;
     line-height: 1.6;
    color: #2c3e50;
  background-color: #ffffff;
}

.primary-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;
    display: flex;
   justify-content: space-between;
    align-items     :  center;
  padding: 0 2rem;
}

.site-logo {
    height: 45px;
                    width: auto;
}

.nav-links {
   display: flex;
  list-style: none;
    gap: 2rem;
}

.nav-item {
   color: white;
               text-decoration: none;
  font-weight: 500;
   transition: color 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 5px;
} 

.nav-item:hover,
.nav-item.active    {
  background-color: rgba(255,255,255,0.2);
	
}

.menu-toggle {
   display: none;
               flex-direction: column;
	cursor: pointer;
    gap:        4px;
}

.hamburger-line {

    width: 25px;
               height: 3px;
  background-color: white;
  transition: all 0.3s ease;}

.hero-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
   padding : 5rem 2rem;
                    min-height: 70vh;
  display: flex;
   align-items: center;
}

.hero-content
{
  gap: 4rem;
   margin: 0 auto;
  max-width: 1200px;
   display: grid;
   align-items: center;
    grid-template-columns: 1fr 1fr;
}

.text-section h1 
 {
  font-size: 3.2rem;
  font-weight: 700;
   margin-bottom    :      1.5rem;
  color: #2c3e50;
  line-height :  1.2;
}

.hero-description {
	    margin-bottom: 2.5rem;
   font-size: 1.2rem;
	color     :  #5a6c7d;
  line-height: 1.7;


}

.action-buttons {
               display: flex;
    gap: 1.5rem;
   flex-wrap: wrap;
}

.primary-cta {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
   padding: 1rem 2rem;
  text-decoration : none;
          border-radius: 8px;
  font-weight  :       600;
          transition: transform 0.3s ease;
}



.primary-cta:hover  
  {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.secondary-cta {

	  border: 2px solid #667eea;
    color: #667eea;
    padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;


}

.secondary-cta:hover {
  background-color: #667eea;
  color:white;
}

.hero-image {
  width   :       100%;
   height   : auto;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.expertise-overview {
                    padding: 6rem 2rem;
  background-color: #f8f9fa;
}  

.content-wrapper {
	    max-width  :     1200px;
  margin: 0 auto;
	}

.expertise-overview h2 {

   text-align: center;
   font-size: 2.5rem;
   margin-bottom: 3rem;
  color: #2c3e50;
     }

.expertise-grid {
       display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;


}

.expertise-card {
          background: white;
   padding: 2.5rem;
   border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.expertise-card:hover {
  transform: translateY(-5px);
} 

.expertise-card h3 {
    font-size: 1.5rem;
  margin-bottom  :      1rem;
   color: #667eea;
}

.expertise-card p
{
  color: #5a6c7d;
   line-height: 1.7;
}

.services-section {
   padding: 6rem 2rem;
}

.services-intro {
   text-align: center; 
	    margin-bottom: 4rem;
}

.services-intro h2 {
  font-size  :  2.5rem;
  margin-bottom: 1rem;
   color: #2c3e50;
}

.services-intro p
	{
  font-size: 1.2rem;
   color: #5a6c7d;
    max-width: 600px;
   margin: 0 auto;
}

.service-item {
  display: grid;
   grid-template-columns: 1fr 1fr;
    gap: 3rem;
   align-items: center;
    margin-bottom: 4rem;
}

.service-item.reverse	{
	  direction: rtl;
	}

.service-item.reverse .service-content {
	direction: ltr;
}

.service-image {
	    width: 100%;
   height: auto;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.service-content h3 {
       font-size    :  2rem;

    margin-bottom: 1rem;

   color: #2c3e50;
	}

.service-content p {
  margin-bottom   :      1.5rem;
  color: #5a6c7d;
  line-height: 1.7;
}

.service-features {

   list-style :    none;
   padding-left: 0;} 

.service-features li   {
    padding: 0.5rem 0;
  color: #667eea;
    position: relative;
   padding-left: 1.5rem;
}

.service-features li::before {
  content: "✓";
   position: absolute;
  left: 0;
  color: #27ae60;
    font-weight: bold;
}

.consultation-cta {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
          padding: 5rem 2rem;
  color: white;
}

.cta-content {
    max-width  :  1200px;
	margin: 0 auto;
    display: grid;
   grid-template-columns: 2fr 1fr;
    gap   :     3rem;
    align-items: center;
}  

.cta-text h2 {
  font-size: 2.5rem;
                    margin-bottom: 1rem;
}

.cta-text p {
  font-size: 1.1rem;
   line-height: 1.7;
  opacity: 0.9;
}

.consultation-button {
    background: white;
  color: #667eea;
  padding     :      1.2rem 2.5rem;
  text-decoration: none;
   border-radius: 8px;
   font-weight: 600;
   font-size     :        1.1rem;
    display   :     inline-block;
          transition: transform 0.3s ease;
}

.consultation-button:hover {
  transform: translateY(-2px); 
  box-shadow: 0 8px 25px rgba(255,255,255,0.3);
}

.testimonials-section {
      padding    :        6rem 2rem;
       background-color: #f8f9fa;
     }

.testimonials-section h2 {
   text-align: center;
  font-size: 2.5rem;
   margin-bottom: 3rem;
  color: #2c3e50;
} 

.testimonials-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
	
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.testimonial-card p {
  font-style  :    italic;
  margin-bottom: 1.5rem;
    color: #5a6c7d;
   line-height: 1.7;
}

.testimonial-author strong	{
  margin-bottom: 0.3rem;
   display: block;
  color: #2c3e50;
}

.testimonial-author span {

		 color: #667eea;
    font-size: 0.9rem;
	}

.contact-section {

    padding: 6rem 2rem;

}

.contact-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-intro h2 {
  font-size   :    2.5rem;
    margin-bottom: 1rem;
  color: #2c3e50;
}

.contact-intro p {
	 max-width: 600px;
    margin: 0 auto;
  color: #5a6c7d;
  font-size: 1.1rem;
}

.contact-layout {
   display: grid;
    grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-image {

  width: 100%;
   height: auto;
    border-radius   :   12px;
    margin-bottom: 2rem;
     }

.info-details h3 {
  font-size: 1.5rem;
	margin-bottom: 1.5rem;
    color: #2c3e50;
}

.contact-item {
	gap: 0.3rem;
  flex-direction: column;
    margin-bottom:       1rem;
    display: flex;
}

.contact-item strong {
    color    :   #667eea;
}

.contact-form {
		 background    :        white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
	}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
   display     :   block;
   margin-bottom: 0.5rem;
  color: #2c3e50;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
                    padding: 0.8rem;
  border: 2px solid #e0e6ed;
    border-radius: 6px;
   font-family: inherit;
    transition  :  border-color 0.3s ease;
} 

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
        outline  :    none;
   border-color: #667eea;
}

.submit-button {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
   padding: 1rem 2rem;
   border: none;
   border-radius: 8px;
   font-weight: 600;
    cursor: pointer;
	width: 100%;
  transition: transform 0.3s ease;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.site-footer


{
		background: #2c3e50;
                    color: white;
   padding: 3rem 2rem 1rem;
}

.footer-content {
	   max-width: 1200px;
    margin: 0 auto;
	 display: grid;
               grid-template-columns  :     1fr 2fr;
   gap: 3rem;
	
     }

.footer-logo {
     height: 60px;
   width: auto;
  filter: brightness(0) invert(1);

}



.footer-info {
	display: grid;
  grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-section h4 {
	   margin-bottom:    1rem;
   color: #667eea;


}

.footer-links {
  list-style: none;
}

.footer-links li {
   margin-bottom: 0.5rem;
}

.footer-links a     {
  color: #bdc3c7;
   text-decoration: none;
   transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.contact-details p {
   margin-bottom: 0.5rem;
    color :#bdc3c7;
}  

.footer-bottom     {
    max-width: 1200px;
   margin: 2rem auto 0;
    padding-top  :  2rem;
   border-top: 1px solid #34495e;
    text-align: center;
    color: #bdc3c7;
}@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        flex-direction: column;
        padding: 1rem 2rem;
        transform: translateY(-100vh);
        transition: transform 0.3s ease;
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .menu-toggle.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .text-section h1 {
        font-size: 2.5rem;
    }

    .service-item,
    .service-item.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .cta-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .text-section h1 {
        font-size: 2rem;
    }

    .action-buttons {
        flex-direction: column;
    }

    .primary-cta,
    .secondary-cta {
        text-align: center;
        display: block;
    }
}.about-hero {
  background: linear-gradient(rgba(102, 126, 234, 0.8), rgba(118, 75, 162, 0.8)), 
                url('photography/business_client_workshop_5.webp') center/cover;
  height: 60vh;
    display: flex;
  align-items: center;
  position :     relative;
  color: white;
}

.hero-overlay {
   width: 100%;
    max-width: 1200px;
         margin: 0 auto;
    padding: 0 2rem;
}

.about-hero-content h1 {
 font-size: 3.5rem;
   font-weight: 700;
    margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
    line-height: 1.6;
   font-size: 1.3rem;
       max-width  :     700px;
    opacity: 0.95;
}

.company-story {
   padding: 5rem 2rem;
  background-color: #f8f9fa;

}

.story-layout {
    display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
    align-items: center;
}

.story-text h2 {
   font-size :  2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.story-text p	{
  margin-bottom: 1.5rem;
	color: #5a6c7d;
   line-height: 1.8;
  font-size :1.1rem;
}

.company-image {
    width    : 100%;
   height: auto;
	border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);

}

.mission-values {

   padding: 6rem 2rem;

}

.mission-grid {
    display: grid;
   grid-template-columns: 1fr 1fr;
         gap: 2.5rem;
}

.primary-mission

{
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
}

.primary-mission h3 {
  font-size: 2.2rem;
   margin-bottom: 1.5rem;
}

.primary-mission p {
    font-size: 1.2rem;
  line-height  :     1.7;
  opacity: 0.95;
}

.value-card {
    background: white;
    padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
               transition: transform 0.3s ease;
	}

.value-card:hover {
  transform: translateY(-5px);
}

.value-card h4 {
	 font-size :     1.4rem;
    margin-bottom: 1rem;
	color: #667eea;
}

.value-card p {
	color: #5a6c7d;
   line-height :     1.7;
}

.team-expertise {
  padding: 6rem 2rem;
    background-color: #f8f9fa;
}

.team-expertise h2 {
    text-align: center;
   font-size: 2.5rem;
   margin-bottom: 4rem;
    color  : #2c3e50;
}

.expertise-block {
		display: grid;
 grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  margin-bottom: 4rem;
}

.expertise-block.reverse {
    direction: rtl;
}

.expertise-block.reverse .expertise-details {
      direction: ltr;


}

.expertise-visual {
    width: 100%;
   height: auto;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.expertise-details h3 {
    font-size: 2rem;
  margin-bottom: 1rem;
   color: #2c3e50;}

.expertise-details p {
    margin-bottom  :  2rem;
   color   :#5a6c7d;
  line-height     :    1.7;
}

.certification-list   {
    display: flex;
  flex-direction: column;
    gap: 0.8rem;
} 

.cert-item {
    background  :    #667eea;
				 color: white;
  padding: 0.5rem 1rem;
   border-radius   :  20px;
   font-size: 0.9rem;
   display: inline-block;
    width: fit-content;
}

.specialization-areas {
	 display:        flex;
	  flex-wrap: wrap;
	   gap: 1rem;
}

.area-tag {
   border: 2px solid #667eea;

	   padding: 0.6rem 1.2rem;

	  font-weight: 500;

	    background     :      #e8f0fe;

	  border-radius    :   25px;

	   color    : #667eea;
}

.methodology-section	{
   padding: 6rem 2rem;
}

.methodology-intro {


   text-align: center;
    margin-bottom: 4rem;
     }

.methodology-intro h2 {
  font-size     :        2.5rem;
    margin-bottom: 1rem;
          color: #2c3e50;
}

.methodology-intro p {
    color: #5a6c7d;
    font-size: 1.2rem;
}

.methodology-steps {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.method-step {
  background: white;
    padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
}


.step-number {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
  width: 60px;
        height: 60px;
    border-radius: 50%;
        display: flex;
   align-items: center;
  justify-content: center;
    font-size: 1.5rem;
   font-weight: bold;
   margin: 0 auto 1.5rem;
}

.method-step h4 {
  font-size: 1.3rem;
	margin-bottom  :       1rem;
                    color: #2c3e50;
}

.method-step p {
  color: #5a6c7d;
    line-height: 1.7;
}

.results-showcase {
          padding :6rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.results-showcase h2 {
  font-size: 2.5rem;
   margin-bottom: 3rem;
               text-align: center;
}



.stats-grid{
    display  :       grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.stat-item {
    text-align   :    center;
  padding: 2rem;
}

.stat-number {
	font-size    :     3rem;
  font-weight:    bold;
  margin-bottom   :       0.5rem;
   display: block;
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
}

.commitment-section     {
	padding: 6rem 2rem;
}

.commitment-content {
   display: grid;
   grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
   align-items: center;
}

.commitment-text h2    {
    font-size: 2.5rem;
   margin-bottom: 2rem;
  color: #2c3e50;
}

.commitment-text > p {
   margin-bottom: 3rem;
   color: #5a6c7d;
  line-height: 1.7;
    font-size: 1.1rem;
}  

.commitment-features {
    display: flex;
    flex-direction: column;
   gap  :    2rem;
}

.feature-item {
  border-left: 4px solid #667eea;
    padding-left :2rem; 
	
}

.feature-item h4 {
 font-size: 1.3rem;
      margin-bottom: 0.5rem;
  color: #2c3e50;
}

.feature-item p {
	color: #5a6c7d;
    line-height: 1.6;
}

.commitment-image {
	width    :       100%;
    height: auto;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.thankyou-main {
    min-height: 80vh;
   padding: 4rem 2rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.thankyou-container {
   max-width: 1200px;
   margin: 0 auto;
  display    :     grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.success-animation {
        text-align: center;
    margin-bottom: 2rem; 

}

.checkmark-circle {
   width: 80px;

  height: 80px;

      border-radius: 50%;

  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);

   display: inline-flex;

    align-items: center;

    justify-content: center;

  margin-bottom: 2rem;

  animation: scaleIn 0.6s ease-out;
}

.checkmark {
  width: 25px;
    height: 15px;
   border: 3px solid white;
    border-top: none;
  border-right: none;
  transform: rotate(-45deg);
    animation :    checkmarkDraw 0.3s ease-out 0.3s both;
}@keyframes scaleIn {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

@keyframes checkmarkDraw {
    from { transform: scale(0) rotate(-45deg); }
    to { transform: scale(1) rotate(-45deg); }
}.thankyou-content h1 {
   font-size: 2.8rem;
   margin-bottom: 1.5rem;
   color: #2c3e50;
    text-align: center;
}

.confirmation-message {
   font-size: 1.2rem;
  margin-bottom: 3rem;
       color: #5a6c7d;
  line-height: 1.7;
    text-align  :center;
}

.next-steps {
	margin-bottom: 3rem;
}

.next-steps h2 {
    font-size    :2rem;
  margin-bottom: 2rem;
    color: #2c3e50; 
	
}

.steps-timeline {
  position: relative;
  padding-left: 2rem;
}

.steps-timeline::before {
  content: '';
   position: absolute;
  left: 20px;
   top: 0;
	bottom: 0;
   width: 2px;
	background:   #e0e6ed;
}

.timeline-item {
    position: relative;
  margin-bottom: 2.5rem;
   padding-left: 3rem;
}

.timeline-marker {
      position: absolute;
    -webkit-border-radius: 50%;
   left: -2.5rem;
   top: 0;
     width: 20px;
       -moz-border-radius: 50%;
  height: 20px;
   border-radius: 50%;
  background: #e0e6ed;
   border: 3px solid white;

}

.timeline-marker.completed{
  background   :        #27ae60;
}

.timeline-marker.pending {
  background: #bdc3c7;
}

.timeline-content h3 {
       font-size  : 1.2rem;
   margin-bottom: 0.5rem;
  color: #2c3e50;
}

.timeline-content p {
    color: #5a6c7d;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.time-indicator {
   font-size: 0.9rem;
  color :        #667eea;
    font-weight: 500; 

}

.what-to-expect {
   margin-bottom: 3rem;
}

.what-to-expect h2 {

	   font-size: 2rem;
    margin-bottom: 2rem;
  color: #2c3e50;
}

.expectation-grid {
	display   :       grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.expectation-card {
    background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.expectation-card h4 {
   font-size: 1.2rem;
  margin-bottom: 1rem;
 color: #667eea;
}

.expectation-card p {
   color: #5a6c7d;
  line-height: 1.6;
   font-size: 0.95rem;
}


.contact-reminder {

	  background: white;
   padding: 2rem;
  border-radius: 12px;
  text-align: center;
   margin-bottom: 3rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
	}

.contact-reminder h3 {
      font-size: 1.3rem;
  margin-bottom: 1rem;
    color:      #2c3e50;
}

.contact-reminder p {
    color: #5a6c7d;
	line-height: 1.6;
}

.action-buttons {
  display: flex;
	gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.back-home-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	 color: white;
    padding :    1rem 2rem;
   text-decoration: none;
    border-radius   :      8px;
     font-weight: 600;
   transition: transform 0.3s ease;
}

.back-home-btn:hover {


  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);


}

.learn-more-btn {
   border: 2px solid #667eea;
   color: #667eea;
    padding:   1rem 2rem;
  text-decoration     :        none;
    border-radius: 8px;
    font-weight :   600;
  transition    :all 0.3s ease;
}

.learn-more-btn:hover {
   background-color: #667eea;
	  color: white;
}

.confirmation-image
	{
  width: 100%;
    height: auto;
	border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
   margin-top :       2rem;
}@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .story-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .expertise-block,
    .expertise-block.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    
    .commitment-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .thankyou-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .thankyou-content h1 {
        font-size: 2.2rem;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .back-home-btn,
    .learn-more-btn {
        text-align: center;
        display: block;
    }
}.cookies-section,
.privacy-section {
  padding: 6rem 2rem;
                    background-color: #f8f9fa;
}

.cookies-section h2,
.privacy-section h2 {
 text-align: center;
   font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #2c3e50;
}

.cookies-grid,
.privacy-grid {

  display  :       grid; 
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 2.5rem;
     }

.cookies-card,
.privacy-card     {
  background:   white;
  padding    :      2.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease; 
	
}

.cookies-card:hover,
.privacy-card:hover {
  transform: translateY(-5px);
}

.cookies-card h3,
.privacy-card h3	{


   font-size     :   1.5rem;
    margin-bottom   :      1rem;
    color :      #667eea;
	}

.cookies-card p,
.privacy-card p  {
	 color: #5a6c7d;
   line-height: 1.7; 
	
}