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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }

        /* Header Styles */
        .header {
            background: #2383a0;
            padding: 1rem 0;
            position: relative;
            z-index: 1000;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }

        

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: opacity 0.3s ease;
        }

        .nav-links a:hover,
        .nav-links a.active {
            opacity: 0.8;
            text-decoration: underline;
        }

        .start-btn {
            background: #ff8c42;
            color: white;
            padding: 0.8rem 1.5rem;
            border: none;
            border-radius: 25px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .start-btn:hover {
            background: #ff7a2b;
            transform: translateY(-2px);
        }

        

        /* About Content */
        .about-content {
            background: #f8f9fa;
            padding: 4rem 0;
        }

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

        .section-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
            margin-bottom: 4rem;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .section-subtitle {
            font-style: italic;
            font-size: 1.1rem;
            color: #ff8c42;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .section-text {
            font-size: 1rem;
            color: #666;
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .highlight-border {
            border-left: 4px solid #ff8c42;
            padding-left: 2rem;
        }

        /* Vision Section */
        .vision-section {
            background: white;
            padding: 4rem 0;
        }

        .vision-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .vision-text {
            padding-left: 2rem;
        }

        .vision-label {
            font-size: 1rem;
            color: #333;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .vision-title {
            font-size: 2rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 2rem;
            line-height: 1.3;
        }

        .quote {
            font-size: 2.2rem;
            font-weight: 700;
            color: #333;
            line-height: 1.3;
            margin-bottom: 2rem;
            quotes: """ """;
        }

        .quote::before {
            content: open-quote;
        }

        .quote::after {
            content: close-quote;
        }

        .company-description {
            font-size: 1rem;
            color: #666;
            line-height: 1.7;
            margin-bottom: 2rem;
        }

        /* Features Section */
        .features-section {
            background: #f8f9fa;
            padding: 4rem 0;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            margin-top: 3rem;
        }

        .feature-card {
            background: white;
            padding: 2.5rem;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-5px);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: #ff8c42;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 1.5rem;
            color: white;
        }

        .feature-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 1rem;
        }

        .feature-text {
            color: #666;
            line-height: 1.6;
        }

        /* Newsletter Section */
        .newsletter-section {
            background: white;
            padding: 4rem 0;
            text-align: center;
        }

        .newsletter-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 1rem;
        }

        .newsletter-subtitle {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .newsletter-form {
            display: flex;
            max-width: 500px;
            margin: 0 auto;
            gap: 0;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .newsletter-input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: none;
            font-size: 1rem;
            outline: none;
            background: #f8f9fa;
        }

        .newsletter-btn {
            background: #ff8c42;
            color: white;
            padding: 1rem 2rem;
            border: none;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .newsletter-btn:hover {
            background: #ff7a2b;
        }

        /* Footer Section */
        .footer {
            background: #000;
            color: white;
            padding: 3rem 0 1rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 3rem;
            margin-bottom: 2rem;
        }

        .footer-logo-section {
            max-width: 400px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .logo-mark {
            background: white;
            color: black;
            padding: 0.8rem;
            font-weight: bold;
            font-size: 1.2rem;
            border-radius: 5px;
        }

        .footer-logo span {
            font-weight: bold;
            font-size: 1.1rem;
        }

        .footer-logo-section p {
            color: #ccc;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-links a {
            width: 45px;
            height: 45px;
            background: #333;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            text-decoration: none;
            transition: all 0.3s ease;
            color: white;
        }

        .social-links a:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .social-facebook:hover {
            background: #1877f2;
        }

        .social-twitter:hover {
            background: #1da1f2;
        }

        .social-linkedin:hover {
            background: #0077b5;
        }

        .social-youtube:hover {
            background: #ff0000;
        }

        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .footer-column h3 {
            color: white;
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 0.5rem;
        }

        .footer-column ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-column ul li a:hover {
            color: #ff8c42;
        }

        .contact-info h4 {
            color: white;
            margin: 1rem 0 0.5rem 0;
            font-size: 0.9rem;
        }

        .contact-info p {
            color: #ccc;
            margin: 0;
            line-height: 1.5;
        }

        .footer-bottom {
            border-top: 1px solid #333;
            padding-top: 1rem;
        }

        .footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #666;
            font-size: 0.9rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .section-grid,
            .vision-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .nav-links {
                display: none;
            }

            .quote {
                font-size: 1.8rem;
            }

            .newsletter-form {
                flex-direction: column;
                border-radius: 0;
            }

            .newsletter-input,
            .newsletter-btn {
                border-radius: 25px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .footer-links {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .footer-bottom-content {
                flex-direction: column;
                gap: 0.5rem;
                text-align: center;
            }
        }
    