/* ===================================
   GOOGLE FONT VARIABLES & COLORS
=================================== */

:root{
    --primary:#2A7FBA;
    --secondary:#38B6A5;
    --dark:#1E3A5F;
    --light:#F8FCFF;
    --white:#FFFFFF;
    --text:#333333;
    --shadow:0 10px 30px rgba(0,0,0,.08);
}

/* ===================================
   RESET
=================================== */

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Open Sans',sans-serif;
    background:var(--light);
    color:var(--text);
}

/* ===================================
   CONTAINER
=================================== */

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* ===================================
   HEADER
=================================== */

header{
    background:var(--white);
    position:sticky;
    top:0;
    z-index:1000;
    box-shadow:var(--shadow);
}

header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;
}

/* ===================================
   LOGO
=================================== */

.logo h2{
    font-family:'Poppins',sans-serif;
    color:var(--primary);
    font-size:28px;
}

.logo p{
    font-size:13px;
    color:#666;
}

/* ===================================
   NAVIGATION
=================================== */

nav ul{
    display:flex;
    list-style:none;
    gap:30px;
}

nav a{
    text-decoration:none;
    color:var(--text);
    font-weight:600;
    transition:.3s;
}

nav a:hover{
    color:var(--primary);
}

/* ===================================
   BUTTONS
=================================== */

.btn{
    display:inline-block;
    text-decoration:none;
    background:var(--primary);
    color:white;
    padding:13px 28px;
    border-radius:30px;
    transition:.3s;
    font-weight:600;
}

.btn:hover{
    background:var(--dark);
}

.btn-outline{
    display:inline-block;
    text-decoration:none;
    padding:13px 28px;
    border-radius:30px;
    border:2px solid var(--primary);
    color:var(--primary);
    font-weight:600;
    transition:.3s;
}

.btn-outline:hover{
    background:var(--primary);
    color:white;
}

/* ===================================
   HERO
=================================== */

.hero{
    padding:90px 0;
}

.hero-content{
    display:flex;
    align-items:center;
    gap:70px;
}

.hero-text{
    flex:1;
}

.hero-tag{
    display:inline-block;
    background:#dff3ff;
    color:var(--primary);
    padding:8px 18px;
    border-radius:30px;
    margin-bottom:20px;
    font-weight:600;
}

.hero-text h1{
    font-family:'Poppins',sans-serif;
    font-size:58px;
    color:var(--dark);
    margin-bottom:10px;
}

.hero-text h3{
    color:var(--primary);
    margin-bottom:20px;
}

.hero-text p{
    font-size:18px;
    line-height:1.8;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    gap:20px;
}

.hero-image{
    flex:1;
    text-align:center;
}

.hero-image img{
    width:420px;
    max-width:100%;
    border-radius:25px;
    box-shadow:var(--shadow);
}

/* ===================================
   SECTION TITLE
=================================== */

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-family:'Poppins',sans-serif;
    font-size:40px;
    color:var(--dark);
    margin-bottom:10px;
}

.section-title p{
    color:var(--primary);
    font-size:18px;
}

/* ===================================
   ABOUT
=================================== */

.about{
    padding:100px 0;
    background:white;
}

.about-content{
    display:flex;
    align-items:center;
    gap:60px;
}

.about-image{
    flex:1;
    text-align:center;
}

.about-image img{
    width:400px;
    max-width:100%;
    border-radius:25px;
    box-shadow:var(--shadow);
}

.about-text{
    flex:1;
}

.about-text h3{
    font-family:'Poppins',sans-serif;
    font-size:32px;
    color:var(--dark);
    margin-bottom:20px;
}

.about-text p{
    line-height:1.9;
    margin-bottom:30px;
}

.about-points{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.point{
    background:var(--light);
    padding:18px;
    border-radius:12px;
    font-weight:600;
    box-shadow:0 5px 15px rgba(0,0,0,.05);
}