* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: Arial, sans-serif;
            line-height: 1.6;
            color: #333;
        }
        
        header {
            background-color: #2c3e50;
            color: white;
            padding: 20px 0;
            text-align: center;
        }
        
        header h1 {
            font-size: 2.5em;
            margin-bottom: 5px;
        }
        
        header p {
            font-size: 1.1em;
            opacity: 0.9;
        }
        
        .logo {
            display: none;
        }
        
        nav {
            background-color: #34495e;
            padding: 15px;
            text-align: center;
        }
        
        nav a {
            color: white;
            text-decoration: none;
            margin: 0 20px;
            font-size: 1.1em;
        }
        
        nav a:hover {
            text-decoration: underline;
        }
        
        .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 40px 20px;
        }
        
        section {
            margin-bottom: 40px;
        }
        
        section h2 {
            color: #2c3e50;
            margin-bottom: 20px;
            font-size: 2em;
            text-align: center;
        }
        
        section p {
            margin-bottom: 15px;
            text-align: justify;
        }
        
        .services {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        
        .service-card {
            background-color: #ecf0f1;
            padding: 20px;
            border-radius: 5px;
            border-left: 4px solid #3498db;
        }
        
        .service-card h3 {
            color: #2c3e50;
            margin-bottom: 10px;
        }
        
        .contact-section {
            background-color: #ecf0f1;
            padding: 30px;
            border-radius: 5px;
            text-align: center;
        }
        
        .contact-section h2 {
            margin-bottom: 20px;
        }
        
        .contact-section p {
            font-size: 1.2em;
            margin-bottom: 15px;
        }
        
        .email-link {
            color: #3498db;
            text-decoration: none;
            font-weight: bold;
        }
        
        .email-link:hover {
            text-decoration: underline;
        }
        
        footer {
            background-color: #2c3e50;
            color: white;
            text-align: center;
            padding: 20px;
            margin-top: 40px;
        }
        
        @media (max-width: 768px) {
            header {
                display: flex;
                justify-content: center;
                align-items: center;
                padding: 20px;
            }
            
            .logo {
                display: block;
                max-width: 80px;
                height: auto;
            }
            
            header h1 {
                display: none;
            }
            
            header p {
                display: none;
            }
        }

        .logo{
            width: 100px;
            height: auto;
        }