* {
    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: linear-gradient(135deg, #667eea 0%, #764ba2 100%);


}

.container {
  max-width: 1200px;
   margin: 0 auto;
    padding: 0 20px;

}

.navbar {
     background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
   padding: 1rem 0;
  position: fixed;
    top: 0;
    width  :        100%;
	z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);}

.nav-container {


  display: flex;
     justify-content     :space-between;
   align-items: center;
    max-width: 1200px;
   margin: 0 auto;
  padding: 0 20px;
	}

.logo img {
         height :      50px;
       width: auto;
}

.nav-menu {
	 display: flex;
    list-style: none;
         gap: 2rem; 
	
}

.nav-link {
   text-decoration: none;
  color: #333;
   font-weight: 500;
    transition     : color 0.3s ease;
}

.nav-link:hover {
                    color     :    #667eea;
}


.hamburger {
    display:  none;
   flex-direction: column;
   cursor     :        pointer;
}

.bar {
    width: 25px;
    height: 3px;
          background-color: #333;
  margin: 3px 0;
  transition: 0.3s;
	
}

.hero {
   height: 100vh;
    display :        flex;
  align-items: center;
   justify-content: center;
   text-align: center;
   color :    white;
    position:      relative;
    overflow: hidden;
}

.hero::before {
  content: '';
    position: absolute;
    top: 0;
  left: 0;
      right: 0;
         bottom: 0;
  background: url('previews/multiple_income_streams_business_4.webp') center/cover;
	 opacity: 0.2;
   z-index: -1;
}

.hero-content h1
{
   font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    margin-left: auto;
  font-size: 1.3rem;
    margin-right: auto;
    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: 600;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
   text-transform: uppercase;
  letter-spacing     :        1px;

}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 107, 107, 0.4); 
	
}

.services {

	   padding: 100px 0;
   background: white;


}

.section-title {
  text-align :   center;
   font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
    position: relative;
}

.section-title::after {

	  content: '';
   position: absolute;
  bottom: -10px;
    left: 50%;
  transform: translateX(-50%);
   width: 80px;
  height: 4px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  border-radius: 2px;
     }

.services-grid {
    display :        grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap    :        2rem;
    margin-top: 4rem;
}

.service-card {
	 background: white;
   padding   :        2rem;
	border-radius :15px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
                    transition: transform 0.3s ease, box-shadow 0.3s ease;
     border: 2px solid transparent;

}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: #667eea;
}

.service-card h3 {
    font-size: 1.5rem;
	margin-bottom: 1rem;
    color: #333;
}

.service-card p    {
      color: #666;
	line-height: 1.8;
     }

.about {
    padding: 100px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.about-content {

          display: grid;
  gap: 4rem;
   grid-template-columns: 1fr 1fr;
   align-items: center;
	}

.about-text h2 {
               font-size :     2.5rem; 
   margin-bottom: 2rem; 
    color: #333;
}

.about-text p {
	font-size: 1.1rem;
    color: #555;
	margin-bottom: 1.5rem;
   line-height: 1.8;
}

.about-image {
   text-align: center;
     }

.about-image img {
    max-width: 100%;
      border-radius: 15px;
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.cta-section

{
    padding: 100px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
   text-align: center;
}

.cta-section h2 {
  margin-bottom: 1rem;
    font-size: 2.5rem;
}

.cta-section p {
	   font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
     }

.contact {

                    padding: 100px 0;
  background: white;
	}

.contact-form {
  max-width: 600px;
    margin: 0 auto;
  background: #f8f9fa;
    padding: 3rem;
   border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
        margin-bottom: 1.5rem;
}

.form-group label {
   display: block;
        margin-bottom: 0.5rem;
          font-weight: 600;
  color: #333; 
	
}

.form-group input,
.form-group select,
.form-group textarea {
     width: 100%;
  padding: 12px 15px;
   border: 2px solid #e9ecef;
    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 {


   resize: vertical;
   min-height: 120px;

}

.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: 600;
    cursor     :   pointer;
   transition   :    transform 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
}


.footer {
   background: #1a1a1a;
   color: white;
   padding: 50px 0 20px;
	
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
   margin-bottom: 2rem;
}

.footer-section h3 {
   margin-bottom: 1rem;
    color: #667eea;
}

.footer-section p,
.footer-section a {
    color: #ccc;
    text-decoration :       none;
  line-height: 1.8;
}  

.footer-section a:hover
{
  color: #667eea;
}

.footer-logo img {
	   height: 40px;
  filter: brightness(0) invert(1);
  margin-bottom: 1rem;

}  

.footer-bottom {
   text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
                    color: #999;
}@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }
}.cookies {
	padding: 100px 0;
   background: white;
}

.cookies-content


{
          max-width: 800px;
	margin: 0 auto;
 font-size :      1.1rem;
  color: #555;
	 line-height :    1.8;
}

.cookies-content h2 {
	font-size: 1.8rem;
   margin    :    2rem 0 1rem;
    color: #333;
}

.cookies-content ul {
   list-style-type: disc;
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.cookies-content li {
    margin-bottom: 0.5rem;
}

.privacy {
   padding: 100px 0;
   background: white;
}

.privacy-content    {
    font-size: 1.1rem;
  color: #555;
   max-width: 800px;
    margin: 0 auto;
   line-height:  1.8;
}

.privacy-content h2 {
    font-size: 1.8rem;
	margin :2rem 0 1rem;
    color: #333;
}

.privacy-content ul {
	 list-style-type: disc;
  margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.privacy-content li {
    margin-bottom: 0.5rem; 

}