:root {
  --primary-color: #0b5d76;
  --secondary-color: #17738f;
  --accent-color: #174d8b;
}

body {
    max-width: 800px;
    max-width: 150rem;
}

.grid {
    display: grid;
    gap: 20px;
    margin-top: 20px;
    grid-template-columns: repeat(3, 1fr);
}

.logo {
    height: 40px;
    vertical-align: middle;
}

.col {
    flex: 1;
    min-width: 300px;
}

.hero-img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.badge {
    background: #e0f2fe;
    color: var(--primary-color);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.85em;
    font-weight: bold;
}

.cta-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.cta-btn:hover {
    background-color: var(--secondary-color) !important;
    color: white !important;
    border: none !important;
}

.cta-btn:visited {
    background-color: var(--primary-color);
    color: white;
}

.price {
    font-size: 1.5em;
    font-weight: bold;
    margin: 10px 0;
    color: #333;
}

footer {
    margin-top: 50px;
    padding: 20px 0;
    border-top: 1px solid #eee;
    text-align: center;
    font-size: 0.9em;
    color: #666;
}
a:hover {
    color: var(--secondary-color) !important;
    border: none !important;
}

nav a {
    margin-right: 15px;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: bold;
}

nav a:visited {
    margin-right: 15px;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: bold;
}

.color-picker{
    border: 2px solid #464646; 
    border-radius: 15px;
    width: 30px;
    height: 30px;
}

.mb-4 {
    margin-bottom: 1rem;
}
.mb-2 {
    margin-bottom: 0.5rem;
}
.mb-6 {
    margin-bottom: 1.5rem;
}
.mb-3{
    margin-bottom: 0.75rem;
}
.mb-1{
    margin-bottom: 0.25rem;
}
.mb-5{
    margin-bottom: 1.25rem;
}
.mb-0{
    margin-bottom: 0;
}
.mb-8{
    margin-bottom: 2rem;
}
.mb-10{
    margin-bottom: 2.5rem;
}