:root {
    --primary-color: #007bff;
    --secondary-color: #00c4b4;
    --text-color: #333;
    --white: #fff;
    --background-light: #f8fafc;
    --card-bg: rgba(255, 255, 255, 0.95);
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --texture-bg: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"%3E%3Cg fill="%23e2e8f0" fill-opacity="0.1"%3E%3Ccircle cx="10" cy="10" r="3"/%3E%3Ccircle cx="90" cy="90" r="3"/%3E%3Ccircle cx="50" cy="50" r="2"/%3E%3Ccircle cx="20" cy="80" r="2"/%3E%3Ccircle cx="80" cy="20" r="2"/%3E%3C/g%3E%3C/svg%3E');
}


.intro {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%), var(--texture-bg);
    background-size: cover, 100px 100px;
    color: var(--text-color);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.intro__inner {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.intro__utp {
    flex: 1;
    padding: 20px;
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.intro__title {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: var(--text-color);
    line-height: 1.2;
}

.intro__subtitle {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #4a5568;
}

.button {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    font-size: 1em;
    cursor: pointer; 
    transition: background 0.3s ease, transform 0.2s ease;
}
 
.button:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

.call-button {
    background: #28a745;
}

.call-button:hover {
    background: #218838;
    transform: translateY(-2px);
}
  
.intro__services {
    flex: 1;
    background: var(--card-bg);
    border-radius: 12px;
    padding: 20px;
    box-shadow: var(--shadow);
}

.services__title {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: var(--text-color);
}

.service-item {
    margin-bottom: 12px;
}

.service-item a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.95em;
    display: block;
    padding: 10px;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.service-item a:hover {
    background: rgba(0, 123, 255, 0.1);
}

@media (max-width: 768px) {
    .intro__inner {
        flex-direction: column;
        gap: 20px;
    }
    
    .intro__utp,
    .intro__services {
        width: 100%;
    }
    
    .intro__title {
        font-size: 2em;
    }
    
    .intro__subtitle {
        font-size: 1.1em;
    }
    
    .services__title {
        font-size: 1.3em;
    }
}

@media (max-width: 480px) {
    .intro {
        padding: 30px 0;
    }
    
    .intro__title {
        font-size: 1.8em;
    }
    
    .intro__subtitle {
        font-size: 0.95em;
    }
    
    .button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    
    .services__title {
        font-size: 1.2em;
    }
    
    .service-item a {
        font-size: 0.85em;
        padding: 8px;
    }
}
  .services-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}

.services-column {
    flex: 1;
    min-width: 300px;
}

.service {
    background: #f9f9f9;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service h3 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.actions button {
    background: #3498db;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
}

.actions a {
    background: #95a5a6;
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    text-decoration: none;
}


.modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            justify-content: center;
            align-items: center;
        }
        .modal-content {
            background: #fff;
            padding: 20px;
            border-radius: 8px;
            max-width: 500px;
            width: 90%;
            position: relative;
        }
        .close {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 1.5em;
            cursor: pointer;
        }
        form {
            display: flex;
            flex-direction: column;
        }
        form input, form label {
            margin: 5px 0;
        }
        form button {
            margin-top: 10px;
            background: #28a745;
            color: white;
            border: none;
            padding: 10px;
            cursor: pointer;
        }
        form button:hover {
            background: #218838;
        }
        @media (max-width: 768px) {
            .categories-container {
                grid-template-columns: 1fr;
            }
        }
.section--content {
    padding: 40px 0;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section--content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.3;
}

.content-text {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.content-text p {
    margin: 0 0 15px;
    font-size: 16px;
    color: #333;
}

.content-text h2 {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin: 20px 0 10px;
}

.content-text ol {
    margin: 15px 0;
    padding-left: 30px;
}

.content-text li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #333;
}

.content-text ol li {
    list-style-type: decimal;
}

.content-text ul li {
    list-style-type: disc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section--content h2 {
        font-size: 24px;
    }

    .content-text {
        font-size: 15px;
    }

    .content-text p,
    .content-text li,
    .content-text h2 {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .section--content {
        padding: 20px 0;
    }

    .section--content h2 {
        font-size: 20px;
    }

    .content-text {
        font-size: 14px;
    }

    .content-text p,
    .content-text li,
    .content-text h2 {
        font-size: 14px;
    }
}