/*
|--------------------------------------------------------------------------
| Reset
|--------------------------------------------------------------------------
*/

*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*
|--------------------------------------------------------------------------
| Body
|--------------------------------------------------------------------------
*/

body
{
    background: #f5f7fa;
    color: #222;
    font-family: Arial, sans-serif;
}

/*
|--------------------------------------------------------------------------
| Container
|--------------------------------------------------------------------------
*/

.container
{
    width: 1400px;
    max-width: 95%;
    margin: 0 auto;
}

/*
|--------------------------------------------------------------------------
| Header
|--------------------------------------------------------------------------
*/

.site-header
{
    background: #001f54;
}

.header-inner
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80px;
}

.site-logo
{
    color: #ffffff;
    font-size: 30px;
    font-weight: 700;
    text-decoration: none;
}

.main-navigation ul
{
    display: flex;
    gap: 30px;
    list-style: none;
}

.main-navigation a
{
    color: #ffffff;
    text-decoration: none;
}

.header-tools input
{
    padding: 10px 15px;
    border: none;
    border-radius: 8px;
}

/*
|--------------------------------------------------------------------------
| Hero
|--------------------------------------------------------------------------
*/

/*
|--------------------------------------------------------------------------
| Hero
|--------------------------------------------------------------------------
*/

.hero-section
{
    position: relative;
    min-height: 750px;

    background-image:
    linear-gradient(
    rgba(0,0,0,.45),
    rgba(0,0,0,.45)
    ),
    url('/assets/images/hero.jpg');

    background-size: cover;
    background-position: center;

    display: flex;
    align-items: center;
}

.hero-box
{
    max-width: 700px;
    color: #ffffff;
}

.hero-box h1
{
    font-size: 72px;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-box p
{
    font-size: 24px;
    margin-bottom: 30px;
}

.hero-search
{
    display: flex;
    overflow: hidden;
    border-radius: 14px;
    background: #ffffff;
    max-width: 700px;
}

.hero-search input
{
    flex: 1;
    border: none;
    padding: 18px 25px;
    font-size: 18px;
}

.hero-search button
{
    border: none;
    background: #0057d9;
    color: #ffffff;
    padding: 0 35px;
    cursor: pointer;
}

.hero-box
{
    max-width: 700px;
    color: #ffffff;
}

.hero-box h1
{
    font-size: 60px;
    margin-bottom: 20px;
}

.hero-box p
{
    font-size: 22px;
}

/*
|--------------------------------------------------------------------------
| Sections
|--------------------------------------------------------------------------
*/

.guide-section,
.tools-section
{
    padding: 80px 0;
}

.section-header
{
    margin-bottom: 30px;
}

/*
|--------------------------------------------------------------------------
| Guides
|--------------------------------------------------------------------------
*/

.guide-grid
{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.guide-card
{
    padding: 30px;
    background: #ffffff;
    border-radius: 16px;
}

/*
|--------------------------------------------------------------------------
| Advertisement
|--------------------------------------------------------------------------
*/

.advertisement-section
{
    padding: 40px 0;
}

.advertisement-box
{
    height: 250px;
    background: #dcdcdc;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*
|--------------------------------------------------------------------------
| Tools
|--------------------------------------------------------------------------
*/

.tools-grid
{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.tool-card
{
    padding: 30px;
    background: #ffffff;
    border-radius: 16px;
}

/*
|--------------------------------------------------------------------------
| Footer
|--------------------------------------------------------------------------
*/

.site-footer
{
    margin-top: 80px;
    padding: 60px 0;
    background: #001f54;
    color: #ffffff;
}

.footer-grid
{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column ul
{
    list-style: none;
}

.footer-column li
{
    margin-bottom: 10px;
}