/* Wolpert & Gordon Landing Page */

body {
	margin: 0;
}

.wg-landing-page {
    margin: 0;
    background: #233f78;
}

.wg-landing-page * {
    box-sizing: border-box;
}

.wg-page {
    min-height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
    color: #fff;
}

.wg-hero {
    position: relative;
    min-height: 78vh;
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
}

.wg-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(5, 33, 62, 0.96) 0%,
        rgba(22, 69, 99, 0.68) 42%,
        rgba(181, 240, 251, 0.08) 100%
    );
    z-index: 1;
}

.wg-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1040px;
    margin: 0 auto;
    padding: 60px 24px 135px;
    text-align: center;
}

.wg-logo-wrap {
    max-width: 600px;
    margin: 0 auto 95px;
}

.wg-logo {
    display: block;
    width: 100%;
    height: auto;
}

.wg-intro {
    max-width: 990px;
    margin: 0 auto 44px;
}

.wg-intro p {
    margin: 0;
    color: #fff;
    font-size: 16px;
    line-height: 2.15;
    font-weight: 400;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
}

.wg-practice-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 18px;
    max-width: 990px;
    margin: 0 auto;
}

.wg-practice-box {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 22px;
    background: #fff;
    color: #061231;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.wg-practice-box:hover,
.wg-practice-box:focus {
    background: #233f78;
    color: #fff;
    transform: translateY(-1px);
}

.wg-footer-info {
    background: #233f78;
    color: #fff;
    padding: 28px 24px 32px;
}

.wg-footer-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    align-items: start;
    text-align: center;
}

.wg-contact-block h2 {
    margin: 0 0 14px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 21px;
    line-height: 1.2;
    color: #fff;
}

.wg-contact-block p,
.wg-contact-block address {
    margin: 0;
    color: #d8e8f4;
    font-size: 15px;
    line-height: 1.6;
    font-style: normal;
}

.wg-contact-block strong {
    color: #d8e8f4;
    font-weight: 700;
}

.wg-contact-block a {
    color: #d8e8f4;
    text-decoration: none;
}

.wg-contact-block a:hover,
.wg-contact-block a:focus {
    color: #fff;
    text-decoration: underline;
}

/* Tablet */

@media (max-width: 1024px) {
    .wg-hero {
        min-height: auto;
    }

    .wg-hero-inner {
        padding: 48px 24px 110px;
    }

    .wg-logo-wrap {
        max-width: 520px;
        margin-bottom: 70px;
    }

    .wg-intro p {
        font-size: 15px;
        line-height: 2;
    }
}

/* Mobile */

@media (max-width: 767px) {
    .wg-hero {
        background-position: center bottom;
    }

    .wg-hero-inner {
        padding: 36px 20px 70px;
    }

    .wg-logo-wrap {
        max-width: 360px;
        margin-bottom: 46px;
    }

    .wg-intro {
        margin-bottom: 32px;
    }

    .wg-intro p {
        font-size: 14px;
        line-height: 1.85;
    }

    .wg-practice-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .wg-practice-box {
        min-height: 50px;
        font-size: 14px;
        padding: 14px 18px;
    }

    .wg-footer-inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .wg-footer-info {
        padding: 30px 20px;
    }
}

/* Small Mobile */

@media (max-width: 420px) {
    .wg-hero-inner {
        padding-top: 28px;
    }

    .wg-logo-wrap {
        max-width: 300px;
        margin-bottom: 36px;
    }

    .wg-intro p {
        font-size: 13.5px;
        line-height: 1.75;
    }

    .wg-contact-block h2 {
        font-size: 20px;
    }

    .wg-contact-block p,
    .wg-contact-block address {
        font-size: 14px;
    }
}