
/* Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

:root{
    --color-primary:#1E90FF;
    --color-secondary:#273f63;
    --color-bg:#ffffff;
    --font-primary:'Montserrat', sans-serif;
}

*,
*::before,
*::after{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    margin:0;
    font-family:var(--font-primary);
    background-color:var(--color-bg);
    color:#212121;
    line-height:1.5;
}

/* Simple responsive container */
.container{
    width:90%;
    max-width:1200px;
    margin-inline:auto;
}

header, footer{
    background-color:var(--color-secondary);
    color:#fff;
    padding:1rem 0;
}

a{
    color:var(--color-primary);
    text-decoration:none;
}

a:hover{
    text-decoration:underline;
}

/* Utility classes */
.text-center{text-align:center;}
.mt-1{margin-top:1rem;}
.mt-2{margin-top:2rem;}
.btn{
    display:inline-block;
    padding:.75rem 1.5rem;
    border:0;
    border-radius:.25rem;
    background-color:var(--color-primary);
    color:#fff;
    cursor:pointer;
    transition:opacity .2s linear;
}
.btn:hover{opacity:.8;}

img{
    max-width:100%;
    height:auto;
}
