:root {
    --blue-color: #00448B;
    --primary-color: #007BFF;
    --secondary-color: #3a99fc;
    --opposite-color: #fffbe9;
    --silver-color: #6C757D;
    --background-color: #F5F5F5;
    --text-color: black;
    --heading-color: #222222;
    --border-color: #CCCCCC;
}

/* Base font-size definition for rem units */
html {
    font-size: 62.5%; /* 1rem = 10px (based on default 16px) */
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    font-size: 1.6rem; /* 16px */
    background-color: #f5f5f5;
    color: var(--text-color);
}

.container {
    width: 95%;
    padding: 1.5rem; /* 15px */

    max-width: 110rem; /* 1200px */
    margin: 0 auto;
    background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--blue-color);
    margin-bottom: 1rem; /* 10px */
    line-height: 1.5;
    font-weight: bold;
}

h1 {
    font-size: 3.2rem;
}

h2 {
    font-size: 2.3rem; /* 20px */
}

h3 {
    font-size: 2rem; /* 18px */
}

h4 {
    color: var(--heading-color);
}

ul {
    margin-bottom: 1.5rem; /* 15px */
}

li,
p {
    font-size: 1.8rem; /* 16px */
    line-height: 1.7;
    margin-bottom: 0.5rem; /* 15px */
}

p {
    margin-bottom: 1.5rem; /* 15px */
}

li a,
p a {
    font-weight: bold;
    color: var(--blue-color);
}

li a:hover,
p a:hover {
    font-weight: bold;
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
    margin: 1.5rem 2.5rem 1.5rem 0; /* 15px 0 */
    border-radius: 0.5rem; /* 5px */
    float: left;
    position: relative;
    top: -0.5rem; /* 5px */
}

blockquote {
    border-left: 0.4rem solid #ccc; /* 4px */
    padding: 2rem 2rem 2rem 3rem; /* 15px */
    margin: 5rem 0; /* 15px 0 */
    font-style: italic;
    font-size: 2.1rem; /* 16px */
    font-weight: normal;
    background-color: var(--opposite-color);
    line-height: 2;
    border-radius: 0.5rem; /* 5px */
    color: var(--blue-color);
}

.cta {
    display: inline-block;
    padding: 1.5rem 0; /* 15px 30px */
    font-size: 2.3rem; /* 18px */
    font-weight: normal;
    color: var(--blue-color);
    /*background-color: #007BFF;*/
    text-decoration: none;
    border-radius: 0.5rem; /* 5px */
    transition: background-color 0.3s ease;
}

.cta a {
    text-decoration: underline;
    color: var(--blue-color);
    font-weight: bold;
}

.cta a:hover {
    text-decoration: underline;
    color: var(--primary-color);
    font-weight: bold;
}

.dovetek {
    color: black;
    font-weight: normal;
}

/* Header */
/* **************************** */
header {
    padding: 0 0 1.5rem 0; /* 15px 0 */
    margin-bottom: 2rem; /* 20px */
    border-bottom: 0.2rem solid #ccc; /* 2px */
}

.web-name {
    font-size: 2.1rem; /* 20px */
    font-weight: normal;
    line-height: 1.5;
}

.web-name a {
    text-decoration: none;
    color: var(--blue-color);
}

.web-name a:hover {
    text-decoration: underline;
    color: var(--blue-color);
}

.teaser {
    font-size: 1.8rem; /* 18px */
    font-weight: bold;
    color: #555;
    margin-top: 0.5rem; /* 5px */
}

/* Footer */
/* **************************** */
footer {
    padding: 2rem 0; /* 20px 0 */
    border-top: 0.2rem solid #ccc; /* 2px */
    margin-top: 10rem; /* 30px */
    margin-bottom: 5rem;
    text-align: center;
    font-size: 1.4rem; /* 14px */
    color: #777;
}

.next-articles {
    margin-top: 5rem; /* 20px */
    margin-bottom: 2rem; /* 20px */
}

/* ================================
   Media Queries - Breakpoints
   ================================ */

/* Mobile First Approach - Base styles above apply to mobile */

/* Tablet - 768px and up */
@media (min-width: 768px) {
    .container {
        width: 80%;
        /*padding: 2rem; !* 20px *!*/
        padding: 3rem; /* 30px */
    }

    .web-name {
        font-size: 2.5rem; /* 40px */
    }

    header {
        padding: 0 0 1.5rem 0; /* 25px 0 */

        /*padding: 2rem 0; !* 20px 0 *!*/
        margin-bottom: 5rem; /* 30px */
    }

    h1 {
        font-size: 3.7rem;
        margin-top: 3rem; /* 20px */
    }

    h2 {
        font-size: 2.5rem; /* 20px */
        margin-top: 3rem; /* 20px */
    }

    li, p {
        font-size: 1.8rem; /* 18px */
    }

}

/* Desktop - 1024px and up */
@media (min-width: 1024px) {
    .container {
        padding: 4rem; /* 40px */
    }

    .web-name {
        font-size: 3rem; /* 45px */
    }

    header {
        padding: 1rem 0; /* 30px 0 */
    }

    h1 {
        font-size: 3.9rem;
        margin-top: 3rem; /* 20px */
    }

    h2 {
        font-size: 2.5rem; /* 20px */
        margin-top: 3rem; /* 20px */
    }

}

/* Large Desktop - 1440px and up */
@media (min-width: 1440px) {
    h1 {
        font-size: 4rem;
    }

    .container {
        /*max-width: 140rem; !* 1400px *!*/
    }

    .web-name {
        /*font-size: 5rem; !* 50px *!*/
    }
}

/* Mobile Only - max 767px */
@media (max-width: 767px) {
    .container {
    }

    .web-name {
        /*font-size: 2.5rem; !* 25px *!*/
    }

    header {
    }

}

/* Print Styles */
@media print {
    body {
        background-color: #fff;
    }

    .container {
        width: 100%;
        max-width: none;
    }
}