 :root {
     --primary-color: #2c3e50;
     --accent-color: #27ae60;
     --accent-hover: #219150;
     --bg-light: #f8f9fa;
     --text-dark: #333333;
     --text-light: #666666;
     --white: #ffffff;
     --border-color: #e0e0e0;
     --shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
 }

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     font-family: Arial, Helvetica, sans-serif;
     line-height: 1.6;
     color: var(--text-dark);
     background-color: var(--white);
 }

 a {
     text-decoration: none;
     color: inherit;
     transition: 0.3s;
 }

 ul {
     list-style: none;
 }

 .container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
 }

 .btn {
     display: inline-block;
     padding: 12px 30px;
     background-color: var(--accent-color);
     color: var(--white);
     border: none;
     border-radius: 5px;
     font-weight: bold;
     cursor: pointer;
     transition: background 0.3s, transform 0.2s;
 }

 .btn:hover {
     background-color: var(--accent-hover);
     transform: translateY(-2px);
 }

 .btn-outline {
     background-color: transparent;
     border: 2px solid var(--accent-color);
     color: var(--accent-color);
 }

 .btn-outline:hover {
     background-color: var(--accent-color);
     color: var(--white);
 }

 .section-title {
     font-size: 2.2rem;
     text-align: center;
     margin-bottom: 10px;
     color: var(--primary-color);
 }

 .section-subtitle {
     text-align: center;
     color: var(--text-light);
     margin-bottom: 50px;
     max-width: 700px;
     margin-left: auto;
     margin-right: auto;
 }

 section {
     padding: 80px 0;
 }

 header {
     background-color: var(--white);
     box-shadow: var(--shadow);
     position: fixed;
     width: 100%;
     top: 0;
     z-index: 1000;
 }

 .navbar {
     display: flex;
     justify-content: space-between;
     align-items: center;
     height: 70px;
 }

 .logo {
     font-size: 1.5rem;
     font-weight: bold;
     color: var(--primary-color);
 }

 .logo span {
     color: var(--accent-color);
 }

 .nav-links {
     display: flex;
     gap: 30px;
 }

 .nav-links a {
     font-weight: 500;
     font-size: 0.95rem;
 }

 .nav-links a:hover {
     color: var(--accent-color);
 }

 .mobile-menu-btn {
     display: none;
     font-size: 1.5rem;
     cursor: pointer;
 }

 #hero {
     background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)), url('../img/hero.png');
     background-size: cover;
     background-position: center;
     height: 100vh;
     display: flex;
     align-items: center;
     color: var(--white);
     text-align: center;
     margin-top: 0;
     padding-top: 70px;
 }

 .hero-content h1 {
     font-size: 3rem;
     margin-bottom: 20px;
 }

 .hero-content p {
     font-size: 1.2rem;
     margin-bottom: 30px;
     max-width: 800px;
     margin-left: auto;
     margin-right: auto;
 }

 #about {
     background-color: var(--white);
 }

 .about-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 50px;
     align-items: center;
 }

 .about-img img {
     width: 100%;
     border-radius: 10px;
     box-shadow: var(--shadow);
 }

 #problems {
     background-color: var(--bg-light);
 }

 .problems-goals-container {
     display: flex;
     flex-wrap: wrap;
     gap: 40px;
 }

 .pg-col {
     flex: 1;
     min-width: 300px;
     background: var(--white);
     padding: 30px;
     border-radius: 10px;
     box-shadow: var(--shadow);
 }

 .pg-col h3 {
     margin-bottom: 20px;
     color: var(--primary-color);
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .pg-list li {
     margin-bottom: 15px;
     display: flex;
     align-items: flex-start;
     gap: 10px;
 }

 .fa-times-circle {
     color: #e74c3c;
 }

 .fa-check-circle {
     color: var(--accent-color);
 }

 #benefits {
     background-color: var(--white);
 }

 .benefits-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
     gap: 30px;
 }

 .benefit-card {
     text-align: center;
     padding: 30px;
     border: 1px solid var(--border-color);
     border-radius: 8px;
     transition: 0.3s;
 }

 .benefit-card:hover {
     box-shadow: var(--shadow);
     transform: translateY(-5px);
 }

 .benefit-card i {
     font-size: 2.5rem;
     color: var(--accent-color);
     margin-bottom: 20px;
 }

 .benefit-card h3 {
     margin-bottom: 15px;
 }

 #modules {
     background-color: var(--bg-light);
 }

 .module-list {
     max-width: 800px;
     margin: 0 auto;
 }

 .module-item {
     background: var(--white);
     padding: 25px;
     margin-bottom: 20px;
     border-radius: 8px;
     border-left: 5px solid var(--accent-color);
     box-shadow: var(--shadow);
 }

 .module-item h3 {
     margin-bottom: 10px;
     color: var(--primary-color);
 }

 #safety {
     background-color: var(--primary-color);
     color: var(--white);
     text-align: center;
 }

 .safety-box {
     border: 2px solid rgba(255, 255, 255, 0.2);
     padding: 40px;
     border-radius: 10px;
     max-width: 900px;
     margin: 0 auto;
 }

 #steps {
     background-color: var(--white);
 }

 .steps-container {
     display: flex;
     justify-content: space-between;
     flex-wrap: wrap;
     gap: 20px;
 }

 .step-card {
     flex: 1;
     min-width: 200px;
     text-align: center;
     position: relative;
 }

 .step-icon {
     width: 80px;
     height: 80px;
     background-color: var(--bg-light);
     border-radius: 50%;
     display: flex;
     justify-content: center;
     align-items: center;
     margin: 0 auto 20px;
     font-size: 1.5rem;
     color: var(--primary-color);
     border: 2px solid var(--accent-color);
 }

 #pricing {
     background-color: var(--bg-light);
 }

 .pricing-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 30px;
 }

 .price-card {
     background: var(--white);
     padding: 40px;
     border-radius: 10px;
     box-shadow: var(--shadow);
     text-align: center;
     display: flex;
     flex-direction: column;
 }

 .price-card.featured {
     border: 2px solid var(--accent-color);
     transform: scale(1.05);
 }

 .price-header h3 {
     font-size: 1.5rem;
     margin-bottom: 10px;
 }

 .price {
     font-size: 2.5rem;
     color: var(--primary-color);
     font-weight: bold;
     margin-bottom: 20px;
 }

 .price-features {
     list-style: none;
     margin-bottom: 30px;
     flex-grow: 1;
 }

 .price-features li {
     margin-bottom: 10px;
     color: var(--text-light);
 }

 #testimonials {
     background-color: var(--white);
 }

 .testimonials-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 30px;
 }

 .testimonial-card {
     background: var(--bg-light);
     padding: 30px;
     border-radius: 10px;
     font-style: italic;
 }

 .testimonial-author {
     margin-top: 20px;
     font-weight: bold;
     font-style: normal;
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .testimonial-author img {
     width: 50px;
     height: 50px;
     border-radius: 50%;
     object-fit: cover;
 }

 #blog {
     background-color: var(--bg-light);
 }

 .blog-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 30px;
 }

 .blog-card {
     background: var(--white);
     border-radius: 10px;
     overflow: hidden;
     box-shadow: var(--shadow);
 }

 .blog-card img {
     width: 100%;
     height: 200px;
     object-fit: cover;
 }

 .blog-content {
     padding: 20px;
 }

 .blog-content h3 {
     margin-bottom: 10px;
 }

 .blog-content p {
     color: var(--text-light);
     margin-bottom: 20px;
     font-size: 0.9rem;
 }

 #disclaimer-section {
     background-color: #eaeaea;
     padding: 40px 0;
     font-size: 0.85rem;
     color: #555;
 }

 #contact {
     background-color: var(--white);
 }

 .contact-container {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 50px;
 }

 .contact-info h3 {
     margin-bottom: 20px;
 }

 .info-item {
     display: flex;
     align-items: center;
     gap: 15px;
     margin-bottom: 20px;
 }

 .info-item i {
     color: var(--accent-color);
     font-size: 1.2rem;
 }

 .social-links {
     display: flex;
     gap: 15px;
     margin-top: 30px;
 }

 .social-links a {
     width: 40px;
     height: 40px;
     background-color: var(--primary-color);
     color: var(--white);
     display: flex;
     justify-content: center;
     align-items: center;
     border-radius: 50%;
 }

 .social-links a:hover {
     background-color: var(--accent-color);
 }

 .contact-form {
     display: flex;
     flex-direction: column;
     gap: 20px;
 }

 .form-group input,
 .form-group textarea,
 .form-group select {
     width: 100%;
     padding: 12px;
     border: 1px solid var(--border-color);
     border-radius: 5px;
     font-size: 1rem;
     font-family: inherit;
 }

 .checkbox-group {
     display: flex;
     align-items: flex-start;
     gap: 10px;
     font-size: 0.9rem;
 }

 footer {
     background-color: var(--primary-color);
     color: var(--white);
     padding: 40px 0;
     text-align: center;
 }

 .footer-links {
     margin-bottom: 20px;
 }

 .footer-links a {
     color: #ccc;
     margin: 0 10px;
     font-size: 0.9rem;
 }

 .footer-links a:hover {
     color: var(--white);
 }

 .fade-in {
     opacity: 0;
     transform: translateY(30px);
     transition: opacity 0.6s ease-out, transform 0.6s ease-out;
 }

 .fade-in.visible {
     opacity: 1;
     transform: translateY(0);
 }

 @media (max-width: 992px) {
     .contact-container {
         grid-template-columns: 1fr;
     }
 }

 @media (max-width: 768px) {
     .navbar {
         position: relative;
     }

     .nav-links {
         display: none;
         position: absolute;
         top: 70px;
         left: 0;
         width: 100%;
         background-color: var(--white);
         flex-direction: column;
         padding: 20px;
         box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
         text-align: center;
     }

     .nav-links.active {
         display: flex;
     }

     .mobile-menu-btn {
         display: block;
     }

     .hero-content h1 {
         font-size: 2rem;
     }

     .about-grid {
         grid-template-columns: 1fr;
     }

     .steps-container {
         flex-direction: column;
     }

     .step-icon::after {
         display: none;
     }
 }

 .page {
     flex: 1;
     padding-top: 120px; 
     padding-bottom: 80px;
 }

 .page h1 {
     color: var(--primary-color);
     margin-bottom: 40px;
     font-size: 2.5rem;
     border-bottom: 2px solid var(--accent-color);
     padding-bottom: 15px;
     display: inline-block;
 }

 .page h2 {
     color: var(--primary-color);
     margin-top: 30px;
     margin-bottom: 15px;
     font-size: 1.5rem;
 }

 .page p,
 .page li {
     margin-bottom: 15px;
     color: var(--text-dark);
 }

 .page ul {
     list-style: disc;
     padding-left: 20px;
     margin-bottom: 20px;
 }

 .page .last-updated {
     color: var(--text-light);
     font-style: italic;
     margin-bottom: 30px;
     font-size: 0.9rem;
 }