:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --neutral-color: #ecf0f1;
    --neutral-dark: #34495e;
    --accent-color: #e74c3c;
    --text-color: #2c3e50;
    --wireframe-color: #333;
}


* {
    box-sizing: border-box;
}

body {
    background-color: #f8f8f8;
    font-family: 'Arial', sans-serif;
    color: var(--text-color);
}

.container {
      background-color: #caae90;
    padding: 20px;
    margin-top: 20px;
}


.service-card {
      background-color: #caae90;
    padding: 25px;
    border: 1px solid var(--wireframe-color);
    border-radius: 8px;
    height: 100%;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--neutral-color);
}

.feature-list li::before {
    content: '✓';
    color: var(--accent-color);
    margin-right: 10px;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat-item {
    padding: 20px;
    border: 1px solid var(--wireframe-color);
    border-radius: 8px;
    margin: 10px;
}

.stat-item h3 {
    color: var(--accent-color);
    font-size: 2.5rem;
    margin-bottom: 0;
}

.contact-form input,
.contact-form textarea {
    border: 1px solid var(--wireframe-color);
    padding: 15px;
    margin-bottom: 15px;
}

.btn {
    padding: 12px 30px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.row {
    border: 1px dashed var(--wireframe-color);
    padding: 15px;
    margin: 10px 0;
}

.col {
    border: 1px dotted var(--wireframe-color);
    padding: 10px;
    min-height: 100px;
}

h1, h2, h3 {
    color: var(--wireframe-color);
    border-bottom: 1px solid var(--wireframe-color);
    padding-bottom: 5px;
    margin-bottom: 15px;
}

p {
    color: var(--wireframe-color);
    border: 1px solid var(--wireframe-color);
    padding: 10px;
    background-color: rgba(0,0,0,0.05);
}

.circle {
    width: 140px;
    height: 140px;
    background-color: rgb(231, 231, 231);
    border: 2px solid var(--wireframe-color);
    border-radius: 50%;
    display: inline-block;
    margin: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.circle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60%;
    height: 60%;
    transform: translate(-50%, -50%);
    border: 1px dashed var(--wireframe-color);
    border-radius: 60%;
}

.circle:hover {
    background-color: rgba(0,0,0,0.05);
    transform: scale(1.1);
}


.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    display: inline-block;
}

@media (min-width: 992px) {
    .hero-image {
        max-width: 420px;
    }
}