/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0b1 | 201101 
   NOTE: WORK IN PROGRESS
   USE WITH CAUTION AND TEST WITH ABANDON */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, aycode,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	font: inherit;
        font-family: 'Comfortaa', cursive;
	vertical-align: baseline;
        position: relative;
}



.wrapper{
    width: 100%;
    max-width: 1366px;
    margin: 0 auto;
}

p{
    margin: 1em 0;    
    font-size: 1.1em;
    line-height: 1.5em;
}

header,
footer{
    background: #1A2940;
    height: 40px;
    padding: 20px;
}
body.mode-mobile header{
    height: 19px;
    padding: 10px 20px 8px 20px;
}

body.mode-mobile header svg{
    max-width: 166px;
    max-height: 19px;
}

body.mode-mobile header svg{
    max-width: 166px;
    max-height: 21px;
}

footer{
    text-align: center;
    color: #fff;
}

body.mode-desktop header a{
    display: inline-block;
    width: 268px;
    height: 40px;
}

.header-image{
    width: 100%;
    max-width: 1366px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.logo-container {
    text-align: center;
    margin: 0;
    padding-top: 20px;
    padding-bottom: 20px;
}

.apple-logo {
    max-width: 120px;
    height: auto;
    display: inline-block;
}

.centered{
    text-align: center;
}


h1{
    margin: 1em 0;   
    font-size: 2em;
    line-height: 1.4em;
    font-weight: bold;
}

h2{
    font-size: 1.5em;
    line-height: 1.5em;
    font-weight: bold;
    margin: 1em 0;
}

ul {
    list-style: disc;
    padding-left: 40px;
    margin: 1em 0;
}

ul li {
    margin: 0.5em 0;
    line-height: 1.6em;
    padding-left: 10px;
}


.small{
    font-size: 0.8em;
}

.padding20{
    padding: 20px;
}


.region{
    background: #e8edf3;
    padding: 20px;
    text-align: center;
    margin-bottom: 5px;
}



/********* Steps Section *********/

.steps-section {
    background: #e8edf3;
    padding: 40px 20px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 30px 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    list-style: none;
    padding: 0;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #135a9b;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    line-height: 1;
}

.step-text {
    flex: 1;
    font-size: 1.1em;
    line-height: 1.6em;
    padding-top: 10px;
}

.step-text strong {
    font-weight: bold;
}

.disclaimer {
    margin-top: 30px;
    font-size: 0.95em;
    color: #666;
}

.terms-link {
    color: #135a9b;
    text-decoration: underline;
}

.terms-link:hover {
    text-decoration: none;
}

/********* More Products Link *********/

.more-products-link {
    text-align: center;
    margin: 40px 0;
    padding: 20px 0;
}

.more-products-btn {
    display: inline-block;
    padding: 15px 40px;
    background: #135a9b;
    color: #fff;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.more-products-btn:hover {
    background: #0d4a7a;
    text-decoration: none;
    color: #fff;
}

/********* products list *********/

.horizontal-productslist{
    margin: 20px 0 30px 0;    
}

ul.productslist{
    width: 100%;
    height: auto;
    overflow: hidden;    
    list-style:none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

ul.productslist li {
    display: inline-block;
    width: calc(25% - 12px);
    margin-right: 0;
    margin-bottom: 20px;
    text-align: center;
    vertical-align: top;
    box-sizing: border-box;
}

ul.productslist li a {
    text-decoration: none;
    color: #333;
}

ul.productslist li h2 {
    font-size: 0.9em;
    margin: 0.5em 0;
    font-weight: bold;
    line-height: 1.4em;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 4.2em;
}

ul.productslist li .product-title {
    font-size: 0.9em;
    margin: 0.5em 0;
    font-weight: bold;
    line-height: 1.4em;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 4.2em;
}

ul.productslist li img {
    width: 100%;
    max-width: 300px;
    height: auto;
}


/** PRICES **/

.coolprice{
 font-size:18px;
 font-weight:bold;
 color: #5D7996; 
 display:inline;
 font-size:1.1em;
}
.coolprice span.sub{
 vertical-align:text-top;
 line-height:1.4em;
 font-size:0.65em;
}
.coolprice span.currency{
 font-weight:normal;
}

.stricken{
 font-size:0.85em;
 text-decoration:line-through;
 color:#999;
}

div.promo {
    position: absolute;
    width: 48px;
    height: 48px;
    z-index: 3;
    display: block;
}

/******** responsive **********/

@media only screen and (max-width: 1023px) {
    ul.productslist li {
        width: calc(50% - 10px);
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5em;
    }
}

@media only screen and (max-width: 600px) {
    ul.productslist li {
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .steps-section {
        padding: 30px 15px;
    }
    
    .step-item {
        gap: 15px;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.3em;
    }
    
    .step-text {
        font-size: 1em;
        padding-top: 5px;
    }
    
    .more-products-btn {
        padding: 12px 30px;
        font-size: 1.1em;
    }
    
    .logo-container {
        padding-top: 15px;
        padding-bottom: 15px;
    }
    
    .apple-logo {
        max-width: 80px;
    }
}

@media only screen and (max-width: 480px) {
    h1 {
        font-size: 1.6em;
    }
    
    h2 {
        font-size: 1.3em;
    }
    
    .logo-container {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    
    .apple-logo {
        max-width: 60px;
    }
}
