/* Base Styles */ :root { --primary-color: #2563eb; --primary-dark: #1d4ed8; --secondary-color: #10b981; --secondary-dark: #059669; --dark-color: #1e293b; --light-color: #f8fafc; --gray-color: #64748b; --light-gray: #e2e8f0; --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; } * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: var(--font-main); line-height: 1.6; color: var(--dark-color); background-color: var(--light-color); } .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; } a { text-decoration: none; color: var(--primary-color); } ul { list-style: none; } img { max-width: 100%; height: auto; } /* Typography */ h1, h2, h3, h4, h5, h6 { margin-bottom: 15px; line-height: 1.3; } p { margin-bottom: 15px; } /* Header */ header { background-color: white; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); position: sticky; top: 0; z-index: 100; } header .container { display: flex; justify-content: space-between; align-items: center; padding: 15px 20px; } .logo h1 { font-size: 1.8rem; color: var(--primary-color); margin-bottom: 0; } /* Navigation */ nav .menu { display: flex; } nav .menu li { margin-left: 20px; } nav .menu a { color: var(--dark-color); font-weight: 500; padding: 5px 10px; border-radius: 5px; transition: all 0.3s ease; } nav .menu a:hover, nav .menu a.active { color: var(--primary-color); background-color: rgba(37, 99, 235, 0.1); } #menu-toggle, .menu-icon { display: none; } /* Hero Section */ .hero { background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)); color: white; padding: 80px 0; text-align: center; } .hero h2 { font-size: 2.5rem; margin-bottom: 20px; max-width: 800px; margin-left: auto; margin-right: auto; } .hero p { font-size: 1.2rem; margin-bottom: 30px; max-width: 600px; margin-left: auto; margin-right: auto; } /* Buttons */ .btn { display: inline-block; background-color: var(--secondary-color); color: white; padding: 12px 25px; border-radius: 5px; font-weight: 600; transition: all 0.3s ease; border: none; cursor: pointer; } .btn:hover { background-color: var(--secondary-dark); transform: translateY(-2px); } .btn-secondary { background-color: white; color: var(--primary-color); border: 1px solid var(--primary-color); } .btn-secondary:hover { background-color: rgba(37, 99, 235, 0.1); } .btn-large { padding: 15px 30px; font-size: 1.1rem; } /* Services Overview */ .services-overview { padding: 80px 0; } .services-overview h2, .why-us h2 { text-align: center; font-size: 2rem; margin-bottom: 40px; } .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-bottom: 40px; } .service-card { background-color: white; border-radius: 10px; padding: 30px; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); transition: all 0.3s ease; } .service-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); } .service-card h3 { color: var(--primary-color); margin-bottom: 15px; } .cta-center { text-align: center; margin-top: 20px; } /* Why Us Section */ .why-us { background-color: #f1f5f9; padding: 80px 0; } .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; } .feature { background-color: white; border-radius: 10px; padding: 30px; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); } .feature h3 { color: var(--primary-color); margin-bottom: 15px; } /* CTA Section */ .cta-section { background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark)); color: white; padding: 60px 0; text-align: center; } .cta-section h2 { font-size: 2rem; margin-bottom: 20px; } .cta-section p { max-width: 600px; margin: 0 auto 30px; font-size: 1.1rem; } /* Footer */ footer { background-color: var(--dark-color); color: white; padding: 60px 0 20px; } .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; margin-bottom: 30px; } .footer-col h3 { color: var(--light-color); margin-bottom: 20px; font-size: 1.2rem; } .footer-col ul li { margin-bottom: 10px; } .footer-col a { color: var(--light-gray); transition: color 0.3s ease; } .footer-col a:hover { color: white; } .disclaimer { border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 20px; margin-bottom: 20px; font-size: 0.9rem; color: var(--light-gray); } .copyright { text-align: center; font-size: 0.9rem; color: var(--light-gray); padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.1); } /* Page Header */ .page-header { background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)); color: white; padding: 60px 0; text-align: center; } .page-header h1 { font-size: 2.5rem; margin-bottom: 10px; } /* Services Detailed */ .services-detailed { padding: 60px 0; } .service-item { margin-bottom: 50px; } .service-item h2 { color: var(--primary-color); margin-bottom: 20px; font-size: 1.8rem; } .service-content { display: grid; grid-template-columns: 1fr; gap: 30px; } .service-description ul { list-style: disc; margin-left: 20px; margin-bottom: 20px; } .service-description ul li { margin-bottom: 10px; } /* Contact Page */ .contact-section { padding: 60px 0; } .contact-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 50px; } .contact-info { background-color: white; border-radius: 10px; padding: 30px; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); } .info-item { margin-bottom: 25px; } .info-item h3 { color: var(--primary-color); margin-bottom: 10px; font-size: 1.2rem; } .contact-form { background-color: white; border-radius: 10px; padding: 30px; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); } .contact-form h2 { margin-bottom: 15px; } .contact-form p { margin-bottom: 25px; } .form-group { margin-bottom: 20px; } .form-group label { display: block; margin-bottom: 8px; font-weight: 500; } .form-group input, .form-group textarea { width: 100%; padding: 12px; border: 1px solid var(--light-gray); border-radius: 5px; font-family: var(--font-main); font-size: 1rem; } .form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--primary-color); } .checkbox-group { display: flex; align-items: flex-start; } .checkbox-group input { width: auto; margin-right: 10px; margin-top: 5px; } .form-submit { margin-top: 30px; } .error-message { color: #e11d48; font-size: 0.9rem; margin-top: 5px; display: block; } /* Thank You Page */ .thank-you-section { padding: 80px 0; } .thank-you-content { background-color: white; border-radius: 10px; padding: 50px; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); text-align: center; max-width: 800px; margin: 0 auto; } .thank-you-content h1 { color: var(--primary-color); font-size: 2.5rem; margin-bottom: 20px; } .thank-you-content p { margin-bottom: 20px; font-size: 1.1rem; } .thank-you-buttons { margin-top: 30px; } .thank-you-buttons .btn { margin: 0 10px; } /* Legal Pages */ .legal-content { padding: 60px 0; } .legal-section { margin-bottom: 40px; } .legal-section h2 { color: var(--primary-color); margin-bottom: 20px; font-size: 1.5rem; } .legal-section p, .legal-section ul, .legal-section ol { margin-bottom: 15px; } .legal-section ul, .legal-section ol { margin-left: 20px; } .legal-section ul li, .legal-section ol li { margin-bottom: 10px; } .cookies-table { width: 100%; border-collapse: collapse; margin-bottom: 20px; } .cookies-table th, .cookies-table td { padding: 12px; text-align: left; border-bottom: 1px solid var(--light-gray); } .cookies-table th { background-color: #f1f5f9; font-weight: 600; } /* Responsive Design */ @media (max-width: 992px) { .contact-grid { grid-template-columns: 1fr; } } @media (max-width: 768px) { .menu-icon { display: block; font-size: 1.5rem; cursor: pointer; } nav .menu { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background-color: white; box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1); padding: 20px; } nav .menu li { margin: 10px 0; } #menu-toggle:checked ~ .menu { display: flex; } .hero h2 { font-size: 2rem; } .service-content { grid-template-columns: 1fr; } .thank-you-content { padding: 30px; } .thank-you-buttons .btn { display: block; margin: 10px auto; width: 100%; max-width: 300px; } } @media (max-width: 576px) { .hero { padding: 60px 0; } .hero h2 { font-size: 1.8rem; } .services-overview, .why-us { padding: 60px 0; } .footer-grid { grid-template-columns: 1fr; } .legal-section h2 { font-size: 1.3rem; } }