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

     
        header h1 {
            font-size: 2.2em;
            margin-bottom: 10px;
        }
        header p {
            font-size: 1.2em;
            margin-bottom: 20px;
        }
        .contact-btn {
            display: inline-block;
            background-color: #25d366;
            color: #ffffff;
            text-decoration: none;
            padding: 12px 25px;
            font-size: 1.1em;
            font-weight: bold;
            border-radius: 5px;
            margin-top: 10px;
        }
      
        section {
            background: #00000;
            padding: 30px;
            margin-bottom: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }
        h2 {
            color: #00000;
            font-size: 1.6em;
            margin-bottom: 20px;
            border-bottom: 2px solid #25d366;
            padding-bottom: 8px;
        }
        ul, ol {
            margin-left: 20px;
            margin-bottom: 15px;
        }
        li {
            margin-bottom: 10px;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 15px;
            margin-bottom: 15px;
        }
        th, td {
            padding: 12px;
            text-align: left;
            border: 1px solid #dddddd;
        }
        th {
            background-color: #0b3c36;
            color: #00000;
        }
        tr:nth-child(even) {
            background-color: #f2f2f2;
        }
        .cta-section {
            background-color: #fffff;
            color: #00000;
            text-align: center;
            padding: 40px 20px;
            border-radius: 8px;
        }
        .cta-section h2 {
            color: #00000;
            border-bottom: none;
        }
     