* {
    margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {

  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
   background: #f8f9fa;



}

.main-navigation {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
    left: 0;
	right: 0;
    z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.nav-container
{
   max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
}

.company-logo {
       height: 45px;
    width: auto;
}

.navigation-links {
  display: flex;
	list-style: none;
      gap: 2rem;


}

.navigation-links a {
	  text-decoration: none;
  color: #2c3e50;
  font-weight: 500;
    transition: color 0.3s ease;


}

.navigation-links a:hover {
    color :     #3498db;
}


.burger-menu {
	 display: none;
 flex-direction: column;
    cursor: pointer;
}

.burger-menu span {
    width: 25px;
 height: 3px;
	 background: #2c3e50;
  margin: 3px 0;
	transition: 0.3s;
}

.hero-section {
  margin-top: 80px;
   padding     : 4rem 2rem;
  max-width: 1200px;
  margin-left: auto;
    margin-right: auto;
    display    :    grid;
    grid-template-columns: 1fr 1fr;
   gap: 3rem;
  align-items: center;
   min-height: 70vh;
}

.hero-content h1	{
  font-size:  2.8rem;
   font-weight: 700;
	color:     #2c3e50;
         margin-bottom: 1.5rem;
  line-height    :   1.2;
     }

.hero-content p {
  font-size :      1.2rem;
    color: #5a6c7d;
  margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
   gap: 1rem;
   flex-wrap: wrap;
	
}

.primary-btn, .secondary-btn {
   padding: 14px 28px;
    text-decoration: none;
    border-radius :       8px;
   font-weight: 600;
    transition     :       all 0.3s ease;
    display   :      inline-block;
}

.primary-btn	{
  background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
}

.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

.secondary-btn {
    background :   transparent;
   color: #3498db;
    border: 2px solid #3498db;
}

.secondary-btn:hover {
  background: #3498db;
          color: white;
}

.hero-image img     {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.services-overview {
	 padding: 5rem 2rem;
       background: white;
}

.content-wrapper    {
       max-width: 1200px;
   margin  :    0 auto;
	
}

.services-overview h2 {

	    text-align: center;
		 font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 3rem;
}



.services-grid {
       display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;


}

.service-card {
   background    : #f8f9fa;
  padding: 2rem;
   border-radius   :  12px;
  text-align   :     center;
   transition: transform 0.3s ease;
}

.service-card:hover
	{
  transform: translateY(-5px);
}

.service-card img {
          width    : 100%;
   height: 200px;
          object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}


.service-card h3 {
  font-size :       1.5rem; 
  color: #2c3e50; 
    margin-bottom: 1rem;
}

.service-card p {
   color: #5a6c7d;
   line-height: 1.6;
}

.expertise-section {


   padding: 5rem 2rem;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
	}

.expertise-content {
  display: grid;
    grid-template-columns: 1fr 1fr;
  gap: 3rem;
    align-items: center;
}

.expertise-content h2 {
  font-size: 2.3rem;
  color: #2c3e50;
    margin-bottom: 1.5rem;
}

.expertise-content p {
  font-size: 1.1rem;
         color: #5a6c7d;
 margin-bottom: 2rem;
}

.expertise-points {
    list-style: none; 

}

.expertise-points li {
   padding: 0.5rem 0;
    color: #2c3e50;
  position: relative;
   padding-left:    1.5rem;
}

.expertise-points li::before
{
    color    :   #27ae60;
  content: "✓";
   left: 0;
  font-weight: bold;
    position: absolute;




}

.expertise-visual img {
  width  : 100%;
   border-radius    :  12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
	
}

.cta-section  {
    padding     : 4rem 2rem;
  background: linear-gradient(135deg, #2c3e50, #34495e);
    text-align: center;
  color     :white;
}

.cta-content h2 {
   font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.cta-content p {
	font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 800px;
  margin-left    :    auto;
    margin-right: auto;


}

.cta-button {
   display: inline-block;
  padding: 16px 32px;
    background: #e74c3c;
  color: white;
   text-decoration  :    none;
    border-radius  :       8px;
    font-weight: 600;
   font-size: 1.1rem;
    transition    : all 0.3s ease; 

}

.cta-button:hover {
	 background: #c0392b;
  transform: translateY(-2px);
}

.contact-section  {
   padding    :        5rem 2rem;
   background   :       white;
}

.contact-container     {
  grid-template-columns: 1fr 1fr;
   margin: 0 auto;
   display: grid;
   gap: 4rem;
  max-width: 1200px;
}

.contact-info h2 {
    font-size: 2.3rem;
  color: #2c3e50;
  margin-bottom: 1.5rem;
}

.contact-info p {
   margin-bottom: 2rem;
   color: #5a6c7d;
  font-size: 1.1rem;
}

.contact-details {
    display  :  flex;
   flex-direction: column;
    gap   :  1.5rem;
}

.contact-item h4 {
  color: #2c3e50;
	margin-bottom: 0.5rem;
    font-size: 1.1rem;
	
}

.contact-item p {
  margin:      0;
       color: #5a6c7d;
}

.contact-form {
	  background: #f8f9fa;
   padding: 2.5rem;
    border-radius: 12px;


}

.form-row {
    display: grid;
          grid-template-columns: 1fr 1fr;
    gap: 1rem;
	margin-bottom: 1rem;
}

.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: 12px;
   border: 2px solid #e9ecef;
  border-radius: 6px;
   font-size   :    1rem;
    transition    :  border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
   outline:     none;
   border-color: #3498db;
}

.submit-btn {
    width: 100%;
  padding: 14px;
       background: #3498db;
  color: white;
  border: none;
	border-radius: 6px;
  font-size  :  1.1rem;
  font-weight    :       600;
  cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover		{
    background: #2980b9;
}

.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-brand img

{
  height: 40px;
}

.footer-info {
	display: grid;
  grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.footer-section h4 {
   margin-bottom: 1rem;
   color     :      #ecf0f1;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
  color: #bdc3c7;
   text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
   color: #3498db;
}

.footer-section p   {
  color   :     #bdc3c7;
    line-height: 1.6;
}

.footer-bottom {

	 max-width: 1200px;
         margin: 2rem auto 0;
    padding-top: 2rem;
  border-top: 1px solid #34495e;
  text-align: center;
   color: #95a5a6;


}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .navigation-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem 2rem;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .navigation-links.active {
        display: flex;
    }

    .hero-section {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem 1rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .expertise-content {
        grid-template-columns: 1fr;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .services-overview h2,
    .cta-content h2 {
        font-size: 2rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
}.current-page {
    color: #3498db !important;
  font-weight: 600;
}

.about-hero {
   margin-top: 80px;
    padding: 4rem 2rem;
    max-width: 1200px;
   margin-left: auto;
  margin-right    :  auto;
   display :      grid;
    grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
    align-items: center;
    min-height: 60vh;
}

.about-hero-content h1	{
   font-size : 2.6rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
      line-height     :   1.2;
}

.about-hero-content p {
  font-size: 1.15rem;
  color   :        #5a6c7d;
  line-height: 1.7;
}

.about-hero-visual img {
      width: 100%;
    border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.our-approach {
   padding: 4rem 2rem;
   background :#f8f9fa;

}

.approach-container {
    max-width: 1200px;
    margin: 0 auto;
}

.our-approach h2 {


  text-align: center;
          font-size     :      2.4rem;
       color: #2c3e50;
    margin-bottom: 3rem;


}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.approach-item {
    background  :white;
   padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        transition: transform 0.3s ease;
	
     }

.approach-item:hover {
  transform: translateY(-8px);
}

.approach-item h3 {
    color: #2c3e50;
   font-size: 1.4rem;
	margin-bottom: 1rem;
}

.approach-item p {

		color: #5a6c7d;
   line-height: 1.6;


}

.expertise-details    {
  padding: 5rem 2rem;
   background: white;
}

.expertise-wrapper {

   max-width: 1200px;
  margin: 0 auto;
	display: grid;
    grid-template-columns: 1.3fr 0.7fr;
  gap     :   4rem;
  align-items: center;

}

.expertise-text h2 {
  font-size: 2.3rem;
   color: #2c3e50;
	margin-bottom:     1.5rem;
}

.expertise-text > p {
    font-size: 1.1rem;
  color: #5a6c7d;
    margin-bottom: 2.5rem;
   line-height: 1.7;
}

.expertise-highlights {
   display: flex;
   flex-direction: column;
    gap:    1.8rem;
}

.highlight-item {
   padding: 1.5rem;
    background: #f8f9fa;
   border-radius: 8px;
	border-left: 4px solid #3498db;
}

.highlight-item h4 {
	 color: #2c3e50;
    margin-bottom: 0.8rem;
          font-size: 1.2rem;
}

.highlight-item p {
                    color: #5a6c7d;
   margin: 0;
}

.expertise-image img {
   width: 100%;
   border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.services-detailed {
    padding: 5rem 2rem;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.services-container {
	 max-width: 1200px;
   margin: 0 auto;
}

.services-detailed h2 {
    text-align: center;
   font-size   :   2.4rem;
    color: #2c3e50;
    margin-bottom: 3.5rem;

}

.services-showcase {
   display :     flex;

   flex-direction     :     column;

        gap: 3rem;
}

.service-detail {
   display: grid;
    grid-template-columns    :0.8fr 1.2fr;
  gap: 2.5rem;
  align-items: center;
   background: white;
   padding: 2.5rem;
    border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.service-detail.reverse {
  grid-template-columns: 1.2fr 0.8fr;
}

.service-detail.reverse .service-content {


   order: -1;}

.service-detail img {
    width: 100%;
    border-radius: 8px;
   height: 250px;
   object-fit: cover;
}

.service-content h3	{
    font-size: 1.6rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.service-content p {
   color: #5a6c7d;
   margin-bottom: 1.5rem;
    line-height     :       1.6;

}

.service-features {
	 list-style: none;
   padding: 0;
}

.service-features li {
   padding: 0.5rem 0;
    color: #2c3e50;
		position   : relative;
    padding-left: 1.5rem;
}

.service-features li::before		{
  content: "→";
   position: absolute;
    left: 0;
  color: #3498db;
    font-weight: bold;
}

.values-section {
          padding: 5rem 2rem;
	background     :       white;
}

.values-content {
  max-width: 1200px;
    margin: 0 auto;
}

.values-section h2 {
      text-align: center;
   font-size: 2.4rem;
  color: #2c3e50;
    margin-bottom: 3rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
}

.value-card {
  text-align: center; 
  padding: 2rem; 
   background: #f8f9fa; 
    border-radius: 12px; 
   transition: all 0.3s ease;
}

.value-card:hover {
  background: #3498db;
  color: white;
  transform: translateY(-5px);
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  color: #2c3e50;
}

.value-card:hover h3 {
   color: white;
}

.value-card p {
   color: #5a6c7d;
	line-height: 1.6;
}

.value-card:hover p {
    color: white;
     }

.thankyou-hero {
	  margin-top: 80px;
   padding   :     4rem 2rem;
	min-height: 70vh;
  display: flex;
   align-items: center;
	


}

.thankyou-container {
   max-width: 1200px;
   margin: 0 auto;
   display: grid;
	grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.success-content{
  text-align: center;
}

.success-icon {
	  margin-bottom: 2rem;

}

.checkmark-circle {
   width: 80px;
	height: 80px;
  border: 3px solid #27ae60;
   border-radius: 50%;
   display: flex;
  align-items   :       center;
    justify-content: center;
  margin:   0 auto;
    animation: scaleIn 0.5s ease-out;
}

.checkmark {
    width: 25px;
   height: 45px;
          border: solid #27ae60;
   border-width: 0 4px 4px 0;
  transform: rotate(45deg);
    animation: checkmarkSlide 0.5s ease-out 0.3s both;


}@keyframes scaleIn {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

@keyframes checkmarkSlide {
    from { 
        transform: rotate(45deg) translateY(10px);
        opacity: 0;
    }
    to { 
        transform: rotate(45deg) translateY(0);
        opacity: 1;
    }
}.success-content h1 {
       font-size: 2.5rem;
  color  : #2c3e50;
   margin-bottom: 1.5rem;


	}

.lead-text {
    font-size: 1.2rem;
  color: #5a6c7d;
   margin-bottom: 3rem;
    line-height: 1.6;
}

.next-steps h2 {
   font-size    :   2rem;
  color: #2c3e50;
  margin-bottom: 2rem;
          text-align :        left;
	
}

.steps-grid {
  display :  flex;
     flex-direction: column;
      gap: 1.5rem;
                       text-align   :left;
     margin-bottom: 3rem;
}

.step-item {
  display: flex;
	gap: 1rem;
    align-items: flex-start;
}

.step-number


{
    width: 40px;
  height: 40px;
       background: #3498db;
	color: white;
    border-radius: 50%;
  display     : flex;
    align-items: center;
   justify-content: center;
   font-weight    :  bold;
   flex-shrink: 0;
}

.step-content h3 {
  margin-bottom     :   0.5rem;
	color: #2c3e50;
   font-size: 1.2rem;
}

.step-content p {
  color: #5a6c7d;
    margin: 0;
    line-height: 1.5;
}

.contact-reminder {
   margin-bottom: 2rem;
    padding: 2rem;
    border-radius: 8px;
    background: #f8f9fa;
    text-align    :        left;
}

.contact-reminder h3 {
  color: #2c3e50; 
	   margin-bottom: 1rem;
}

.contact-reminder p		{
  color: #5a6c7d;
                    margin-bottom: 1rem;
}

.contact-info-brief p {
  margin    :        0.5rem 0;
   color: #2c3e50;
}

.action-buttons {

	  display: flex;
   gap:1rem;
  justify-content: center;
  flex-wrap: wrap;


}

.btn-primary, .btn-secondary {
    transition: all 0.3s ease;
   font-weight :600;
    border-radius: 6px;
  padding :     12px 24px;
	 text-decoration: none; 
	
}

.btn-primary     {
  background: #3498db;
    color: white;
}

.btn-primary:hover {
    background: #2980b9; 
	
}

.btn-secondary {
	background :      transparent;
   color: #3498db;
    border: 2px solid #3498db;
}

.btn-secondary:hover {
  background: #3498db;
    color   :  white;
}

.thankyou-visual img     {
   width: 100%;
	 border-radius:       12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.additional-resources {


    padding: 4rem 2rem;
    background: #f8f9fa;

}

.resources-container {
    max-width: 1200px;
    margin: 0 auto;
}

.additional-resources h2 {

	    text-align: center;
    font-size: 2.2rem;
      color: #2c3e50;
    margin-bottom: 3rem;


}

.resources-grid {
   display:        grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.resource-card {
    background: white;
    padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.resource-card h3 {
   color: #2c3e50;
  margin-bottom: 1rem;
    font-size: 1.3rem;
}

.resource-card p {
  color: #5a6c7d;
  line-height: 1.6;
  margin: 0;
}@media (max-width: 768px) {
    .about-hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem 1rem;
    }

    .about-hero-content h1 {
        font-size: 2.2rem;
    }

    .expertise-wrapper {
        grid-template-columns: 1fr;
    }

    .service-detail,
    .service-detail.reverse {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .service-detail.reverse .service-content {
        order: 0;
    }

    .thankyou-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .next-steps h2 {
        text-align: center;
    }

    .steps-grid {
        text-align: center;
    }

    .contact-reminder {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about-hero-content h1 {
        font-size: 1.9rem;
    }

    .success-content h1 {
        font-size: 2rem;
    }

    .action-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
}.cookies-policy, .privacy-policy {
		padding: 5rem 2rem;

	   background: white;
}

.cookies-policy h1, .privacy-policy h1 {
    font-size: 2.5rem;
   color: #2c3e50;
  text-align: center;
    margin-bottom: 2rem;
}

.cookies-policy h2, .privacy-policy h2 {
      font-size: 1.8rem;
    color: #2c3e50;
  margin: 2rem 0 1rem;
}

.cookies-policy p, .privacy-policy p {
    font-size: 1.1rem;
   color: #5a6c7d;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.cookie-types {
  list-style: none;
   padding: 0;
  margin-bottom: 1.5rem;
}

.cookie-types li {
    padding: 0.5rem 0;
    color: #2c3e50;
  position: relative;
                    padding-left     :    1.5rem;
}

.cookie-types li::before {
  content: "→";
    position: absolute;
	left: 0;
   color: #3498db;
   font-weight: bold;
}@media (max-width: 768px) {
    .cookies-policy, .privacy-policy {
        padding: 3rem 1rem;
    }

    .cookies-policy h1, .privacy-policy h1 {
        font-size: 2rem;
    }

    .cookies-policy h2, .privacy-policy h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .cookies-policy h1, .privacy-policy h1 {
        font-size: 1.8rem;
    }

    .cookies-policy h2, .privacy-policy h2 {
        font-size: 1.3rem;
    }
}