/* =========================
   SyoneexMe GDPR Website
   style.css
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#eef3fb;
    color:#333;
    line-height:1.7;
}

/* =========================
   Header
========================= */

header{
    background:linear-gradient(135deg,#005ce6,#0b5ed7,#0042a8);
    color:#fff;
    text-align:center;
    padding:70px 20px 90px;
    border-bottom-left-radius:40px;
    border-bottom-right-radius:40px;
    box-shadow:0 12px 35px rgba(0,0,0,.15);
    position:relative;
}

.brand{
    display:inline-block;
    margin-bottom:25px;
}

.logo{
    width:280px;
    max-width:90%;
    height:auto;
    transition:0.3s ease;
}

.logo:hover{
    transform:scale(1.05);
}

header h1{
    font-size:42px;
    margin-bottom:10px;
    font-weight:700;
}

header p{
    font-size:18px;
    opacity:.95;
}

/* =========================
   Language Button
========================= */

.language{
    position:fixed;
    top:20px;
    right:20px;
    z-index:1000;
}

.language a{
    display:inline-block;
    background:#fff;
    color:#0b5ed7;
    text-decoration:none;
    padding:12px 22px;
    border-radius:50px;
    font-weight:bold;
    box-shadow:0 5px 20px rgba(0,0,0,.15);
    transition:.3s;
}

.language a:hover{
    background:#0b5ed7;
    color:white;
}

/* =========================
   Hero
========================= */

.hero{
    max-width:950px;
    margin:-45px auto 50px;
    background:white;
    border-radius:20px;
    padding:40px;
    text-align:center;
    box-shadow:0 12px 35px rgba(0,0,0,.12);
}

.hero h2{
    color:#0b5ed7;
    font-size:32px;
    margin-bottom:15px;
}

.hero p{
    color:#666;
    font-size:17px;
}

/* =========================
   Main Container
========================= */

.container{
    width:90%;
    max-width:1100px;
    margin:auto;
    padding-bottom:60px;
}

/* =========================
   Cards
========================= */

.card{
    background:white;
    border-radius:18px;
    padding:35px;
    margin-bottom:25px;
    border:1px solid #edf1f8;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:0.3s ease;
}

.card:hover{
    transform:translateY(-5px);
    box-shadow:0 18px 40px rgba(0,0,0,.12);
}

.card h2{
    color:#0b5ed7;
    font-size:28px;
    margin-bottom:18px;
}

.card p{
    margin-bottom:15px;
}

.card ul{
    margin-left:20px;
}

.card li{
    margin-bottom:10px;
}

/* =========================
   Contact Box
========================= */

.contact{
    background:#eef5ff;
    border-left:6px solid #0b5ed7;
}

/* =========================
   Footer
========================= */

footer{
    background:#0b5ed7;
    color:white;
    text-align:center;
    padding:35px 20px;
    margin-top:40px;
}

footer p{
    margin:5px 0;
}

/* =========================
   Links
========================= */

a{
    color:#0b5ed7;
}

a:hover{
    text-decoration:none;
}

/* =========================
   Tables (optional)
========================= */

table{
    width:100%;
    border-collapse:collapse;
    margin-top:15px;
}

table th,
table td{
    border:1px solid #ddd;
    padding:12px;
    text-align:left;
}

table th{
    background:#0b5ed7;
    color:white;
}

/* =========================
   Mobile
========================= */

@media (max-width:768px){

    header{
        padding:60px 20px 80px;
    }

    .logo{
        width:220px;
    }

    header h1{
        font-size:32px;
    }

    header p{
        font-size:16px;
    }

    .hero{
        margin:-35px 15px 40px;
        padding:30px;
    }

    .hero h2{
        font-size:26px;
    }

    .hero p{
        font-size:16px;
    }

    .container{
        width:92%;
    }

    .card{
        padding:25px;
    }

    .card h2{
        font-size:24px;
    }

    .language{
        top:15px;
        right:15px;
    }

    .language a{
        padding:10px 18px;
        font-size:14px;
    }

}

/* =========================
   Small Phones
========================= */

@media (max-width:480px){

    .logo{
        width:180px;
    }

    header h1{
        font-size:28px;
    }

    .hero h2{
        font-size:22px;
    }

    .card{
        padding:20px;
    }

    .card h2{
        font-size:22px;
    }

}