/* Variables */
:root {
    --primary: #23243a;
    --primary-light: #23243a;
    --dark: #2d3748;
    --light: #f7fafc;
    --text: #4a5568;
    --border-radius: 0.5rem;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Base Styles */
body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.5;
    color: var(--text);
    background-color: #f8f9fa;
    padding: 0;
    margin: 0;
}

/* Container */
.arma-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Header */
.arma-header {
    text-align: center;
    margin-bottom: 3rem;
}

.arma-header h1 {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.arma-header h1 i {
    font-size: 2.5rem;
}

.arma-subtitle {
    color: var(--text);
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Services Grid */
.arma-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

/* Service Cards */
.arma-service-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 1.5rem;
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary);
    display: flex;
    flex-direction: column;
}

.arma-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.arma-service-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.arma-service-card h3 {
    color: var(--dark);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.arma-service-card p {
    color: var(--text);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.arma-service-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.arma-service-link:hover {
    color: var(--primary-light);
}

.arma-service-link i {
    font-size: 1rem;
    margin: 0;
    transition: transform 0.3s ease;
}

.arma-service-link:hover i {
    transform: translateX(3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .arma-header h1 {
        font-size: 2rem;
    }
    
    .arma-subtitle {
        font-size: 1.1rem;
    }
    
    .arma-services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .arma-container {
        padding: 1.5rem 1rem;
    }
    
    .arma-header h1 {
        font-size: 1.75rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .arma-header h1 i {
        font-size: 2rem;
    }
}