* {
    margin: 0;
   padding: 0;
  box-sizing: border-box;
}

body {
	     line-height: 1.6;
  color: #333;
  font-family: 'Arial', sans-serif;
     }

.navigation-container {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding  :    1rem 0;
                    position :      fixed;
    width: 100%;
    top: 0;
   z-index: 1000;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.nav-wrapper {
   max-width: 1200px;
   margin: 0 auto;
    display: flex;
    justify-content: space-between;
	align-items  :   center;
   padding: 0 2rem;
     }

.brand-logo img {
    height: 45px;
   width: auto;
}

.primary-menu {
   display: flex;
	list-style: none;
   gap  :       2rem;
}

.primary-menu a

{
   text-decoration: none;
    padding: 0.5rem 1rem;
   font-weight: 500;
	color: white;
   transition: all 0.3s ease;
   border-radius: 25px;
}

.primary-menu a:hover {
  background: rgba(255,255,255,0.2);
}

.mobile-toggle {


  display: none;
    flex-direction: column;
    cursor     : pointer;
  padding: 5px;

}

.mobile-toggle span {
    width: 25px;
   height: 3px;
  background: white;
    margin: 3px 0;
    transition: 0.3s;
}@media (max-width: 768px) {
    .primary-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
    }

    .primary-menu.active {
        left: 0;
    }

    .mobile-toggle {
        display: flex;
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}.hero-section		{
  background: linear-gradient(rgba(102, 126, 234, 0.8), rgba(118, 75, 162, 0.8));
      height :      100vh;
     display: flex;
   	align-items: center;
      justify-content    :   center;
           text-align: center;
       color: white;
   	 margin-top: 70px;
}

.hero-content h1 {
	 font-size: 3.5rem;
   margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
  font-size: 1.3rem;
	margin-bottom: 2rem;
   max-width: 600px;
}

.cta-button {
   display: inline-block;
  background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
  padding: 15px 40px;
   text-decoration: none;
   border-radius: 50px;
  font-weight: bold;
         font-size: 1.1rem;
   transition: transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.cta-button:hover


{
  transform: translateY(-3px);
}

.services-section {
               padding: 5rem 0;
  background: #f8f9fa;
}

.container {

   max-width:        1200px;
   margin: 0 auto;
  padding  :0 2rem;


}

.section-title {
  text-align: center;
	font-size: 2.5rem;
   margin-bottom: 3rem;
   color: #333;
}

.services-grid {
       display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap   :       2rem;
   margin-bottom: 3rem;
}

.service-card {
  background: white;
               padding :    2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card h3 {
  color: #667eea;
    margin-bottom: 1rem;
  font-size: 1.5rem;
}

.service-card p {
  color: #666;
  line-height: 1.8;
}

.about-section {
   padding   : 5rem 0;
  background: white;
}

.about-content  {
   display: grid;
   grid-template-columns  :  1fr 1fr;
  gap :3rem;
    align-items: center;
}

.about-text h2 {
  font-size: 2.5rem;
	margin-bottom  :        1.5rem;
    color   :      #333; 

}

.about-text p {
    color: #666;
  line-height: 1.8;
   margin-bottom   :      1.5rem;
}

.about-image img 
 {
   width: 100%;
    border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.cta-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 5rem 0;
	text-align: center;
	 color: white;
}

.cta-section h2 {
   font-size: 2.5rem; 
	 margin-bottom: 1rem;


}

.cta-section p {
    font-size: 1.2rem;
  margin-bottom: 2rem;
   max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-section {
    background: #f8f9fa;
   padding: 5rem 0;
}

.contact-form {
  max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
 border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1); 
	
}

.form-group {
         margin-bottom: 1.5rem; 

}

.form-group label {


    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
	}

.form-group input,
.form-group select,
.form-group textarea {
   width: 100%;
         padding: 12px;
    border     :        2px solid #e1e5e9;
    border-radius: 10px;
       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: #667eea;
}

.form-group textarea {
    height: 120px;
   resize: vertical;
}

.submit-btn {
    width: 100%;
  background: linear-gradient(45deg, #667eea, #764ba2);
    color  :white;
       padding: 15px;
    border:   none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: bold;
   cursor: pointer;
	 transition: transform 0.3s ease;
}

.submit-btn:hover {
  -moz-transform: translateY(-2px);
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}.site-footer {


  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ecf0f1;
    padding: 3rem 0 1rem;
  position: relative;
    overflow: hidden;


}

.site-footer::before

{
  content: '';
    position: absolute;
   top: 0;
  left :  0;
    right: 0;
  height: 4px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #667eea 100%);
}

.footer-container {
   max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-content {
  display     :     grid;

	    grid-template-columns: 1fr 1fr 1fr;

	  gap   :  3rem;

		margin-bottom: 2rem;
}

.footer-section h3 {
  color: #fff;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
   position: relative;
}

.footer-section h3::after {
  content: '';
   position: absolute;
      bottom  :-5px;
  left: 0;
  width :     40px;
   height: 2px;
  background: linear-gradient(45deg, #667eea, #764ba2);
}

.footer-logo {
  display: flex;
  align-items: center;
    margin-bottom     :   1.5rem;
}

.footer-logo img   {
    height: 40px;
    width: auto;
  filter: brightness(0) invert(1);
}

.footer-section p {
  line-height: 1.8;
    color: #bdc3c7;
    margin-bottom: 1rem;
}

.footer-links   {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem; 

}

.footer-links a {
   color: #bdc3c7;
       text-decoration: none;
       transition: color 0.3s ease;
      display: inline-block;
      position   :       relative;
}

.footer-links a:hover {

    color: #667eea;
  transform: translateX(5px);
     }

.footer-links a::before {
  content: '▶';
    position: absolute;
  left: -15px;
  opacity: 0;
    transition: opacity 0.3s ease;
     color: #667eea;
  font-size: 0.8rem;
}

.footer-links a:hover::before 
 {
	opacity: 1;
}

.contact-info {
   list-style: none;
}

.contact-info li {
  margin-bottom  :1rem;
   display: flex;
   align-items: flex-start;
  gap  :      0.8rem;
}

.contact-info li::before {
  content: '●';
	  color :#667eea;
	  font-weight: bold;
	  margin-top: 0.2rem;
}  

.contact-info a {
  color : #bdc3c7;
   text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #667eea;
}

.footer-bottom {
   border-top: 1px solid #34495e;
   padding-top: 1.5rem;
   text-align: center;
}

.footer-bottom-content {
        display: flex;
   justify-content: space-between;
   align-items: center;
   flex-wrap: wrap;
	gap :1rem;
}

.copyright {
    color: #95a5a6;
  font-size: 0.9rem;
}

.legal-links {
    display:  flex;
    gap: 2rem;
  list-style     :      none;
}

.legal-links a {
  color: #95a5a6;
  text-decoration: none;
   font-size: 0.9rem;
  transition: color 0.3s ease;
}

.legal-links a:hover


{
   color: #667eea;
}@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-links a::before {
        display: none;
    }

    .footer-links a:hover {
        transform: none;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .legal-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}.cookies-section,
.privacy-section {
    padding: 5rem 0;
        background  :      #f8f9fa;
}

.cookies-content,
.privacy-content {
   max-width: 800px;
                    margin: 0 auto;
  background: white;
    padding    :2rem;
                    border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.cookies-content h2,
.privacy-content h2 {
   font-size: 1.8rem;
   color: #333;
   margin-bottom: 1rem;
}

.cookies-content p,
.privacy-content p {
   color: #666;
  line-height :     1.8;
  margin-bottom: 1.5rem;
}

.cookies-content ul,
.privacy-content ul {
	list-style: none;
	 margin-bottom: 1.5rem;
}

.cookies-content ul li,
.privacy-content ul li {
    margin-bottom: 0.8rem;
  position: relative;
   padding-left: 1.5rem;
}

.cookies-content ul li::before,
.privacy-content ul li::before {
  content: '●';
   color: #667eea;
   position: absolute;
   left: 0;
  top: 0.2rem;


}@media (max-width: 768px) {
    .cookies-content,
    .privacy-content {
        padding: 1.5rem;
    }

    .cookies-content h2,
    .privacy-content h2 {
        font-size: 1.5rem;
    }
}