* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        /*
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: #fbfbfb;
            color: #1e1e1e;
        }*/

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: #fbfbfb;
            color: #1e1e1e;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        .hero-section {
            position: relative;
            overflow: hidden;
            min-height: 600px;
            display: flex;
            align-items: center;
        }

        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(176.96deg, rgba(217, 217, 217, 0) 3.77%, rgba(247, 247, 247, 0.9) 39.15%);
            opacity: 0.73;
            z-index: 1;
        }

        .service-card {
            background: white;
            border: 2px solid #1e1e1e;
            border-radius: 37px;
            padding: 40px;
            box-shadow: -7px 7px 0px 0px black;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            z-index: 2;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: -10px 12px 0px 0px black;
        }

        .service-card.dark {
            background: #1e1e1e;
            color: #fbfbfb;
        }

        .btn-primary {
            background: #ff5c5c;
            color: #1e1e1e;
            border: 2px solid #1e1e1e;
            padding: 12px 24px;
            border-radius: 10px;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: -5px 5px 0px 0px black;
            display: inline-block;
            text-decoration: none;
            text-align: center;
        }

        .btn-primary:hover {
            box-shadow: -7px 7px 0px 0px black;
            transform: translateY(-2px);
        }

        .btn-secondary {
            background: #fbfbfb;
            color: #1e1e1e;
            border: 2px solid #1e1e1e;
            padding: 12px 24px;
            border-radius: 10px;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: -5px 5px 0px 0px black;
            display: inline-block;
            text-decoration: none;
            text-align: center;
        }

        .btn-secondary:hover {
            box-shadow: -7px 7px 0px 0px black;
            transform: translateY(-2px);
        }

        .about-box {
            background: #e0e0e0;
            border-radius: 37px;
            padding: 60px;
            text-align: center;
        }

        .dark-section {
            background: #1e1e1e;
            color: #fbfbfb;
        }

        .red-badge {
            background: #ff5c5c;
            color: white;
            display: inline-block;
            padding: 8px 16px;
            border-radius: 6px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .nav-links {
            display: flex;
            gap: 40px;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: #1e1e1e;
            font-weight: 500;
            font-size: 16px;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: #ff5c5c;
        }

        .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-bottom: 80px;
        }

        .icon-box {
            width: 80px;
            height: 80px;
            background: rgba(255, 92, 92, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 40px;
        }

        .footer {
            background: #1e1e1e;
            color: #fbfbfb;
            padding: 60px 0;
            margin-top: 100px;
        }

        .container {
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 100px;
        }

        .logo-circle {
            width: 60px;
            height: 60px;
            background: #1e1e1e;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fbfbfb;
            font-weight: bold;
            font-size: 12px;
            text-align: center;
        }

        .section-padding {
            padding: 100px;
        }

        .divider-bar {
            background: #1e1e1e;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: space-around;
            color: #fbfbfb;
            font-size: 18px;
            font-weight: 600;
        }

        @media (max-width: 768px) {
            .container {
                padding: 20px 40px;
            }

            .section-padding {
                padding: 60px 20px;
            }

            .nav-links {
                gap: 8px;
                font-size: 12px;
                flex-wrap: wrap;
                justify-content: flex-end;
                width: 100%;
            }

            .hero-section {
                min-height: 400px;
            }

            .service-card {
                padding: 25px;
            }

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

            .about-box {
                padding: 40px 20px;
            }

            .about-box-premium {
                background: #e0e0e0;
                border: 2px solid #1e1e1e;
                border-radius: 37px;
                padding: 70px 40px;
                text-align: center;
                box-shadow: -7px 7px 0px 0px black;
                transition: transform 0.3s ease, box-shadow 0.3s ease;
                max-width: 900px;
                margin: 0 auto;
            }

            .about-box-premium:hover {
                transform: translateY(-5px);
                box-shadow: -10px 12px 0px 0px black;
            }

            .about-box-solid {
                background: #e0e0e0;
                border: 2px solid #1e1e1e;
                border-radius: 37px;
                padding: 60px 80px;
                box-shadow: -7px 7px 0px 0px black;
                transition: transform 0.3s ease, box-shadow 0.3s ease;
                text-align: left; 
                max-width: 1000px;
                margin: 0 auto;
            }

            .about-box-solid:hover {
                transform: translateY(-5px);
                box-shadow: -10px 12px 0px 0px black;
            }
        
            @media (max-width: 768px) {
                .about-box-solid {
                    padding: 40px 30px;
                }
            }

        }