:root {
    --golden-amber: #fcbf49;
    --soft-cream: #fefaec;
    --rich-amber: #e5a626;
    --ocean-deep: #2c4e63;
    --midnight-slate: #1a1f36;
    --warm-coral: #e63000;
    --sunset-glow: #ea5b0e;
    --forest-mist: #929294;
    --cloud-white: #ffffff;
    --shadow-veil: rgba(0, 0, 0, 0.37);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    color: var(--midnight-slate);
    background: var(--cloud-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Times New Roman', Times, serif;
    font-weight: 720;
    line-height: 1.3;
    color: var(--midnight-slate);
}

.ContentContainer {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 21px;
}

.MainNavigationWrapper {
    background: var(--cloud-white);
    box-shadow: 0 3px 12px rgba(28, 39, 60, 0.08);
    position: relative;
    z-index: 1000;
}

.NavContainer {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 21px;
}

.TopNavigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    position: relative;
}

.BrandLogo img {
    height: 47px;
    width: auto;
}

.NavigationToggle {
    display: none;
}

.ToggleLabel {
    display: none;
}

.MenuBurger {
    width: 34px;
    height: 4px;
    background: var(--midnight-slate);
    position: relative;
    transition: all 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.MenuBurger:before,
.MenuBurger:after {
    content: '';
    position: absolute;
    width: 34px;
    height: 4px;
    background: var(--midnight-slate);
    transition: all 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.MenuBurger:before {
    top: -9px;
}

.MenuBurger:after {
    top: 9px;
}

.NavigationWrapper {
    display: flex;
    align-items: center;
    gap: 23px;
}

.NavigationItem {
    list-style: none;
}

.NavigationLink {
    color: var(--midnight-slate);
    text-decoration: none;
    font-size: 17px;
    font-weight: 520;
    transition: color 0.3s ease;
}

.NavigationLink:hover {
    color: var(--golden-amber);
}

@media screen and (max-width: 890px) {
    .ToggleLabel {
        display: block;
        cursor: pointer;
        padding: 18px;
        z-index: 2;
    }

    .NavigationWrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--cloud-white);
        transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        padding-top: 89px;
        flex-direction: column;
        align-items: center;
    }

    .NavigationItem {
        width: 100%;
        text-align: center;
        margin: 19px 0;
    }

    .NavigationLink {
        display: inline-block;
        padding: 13px 24px;
        font-size: 21px;
        color: var(--midnight-slate);
    }

    .NavigationToggle:checked ~ .NavigationWrapper {
        left: 0;
    }

    .NavigationToggle:checked ~ .ToggleLabel .MenuBurger {
        background: transparent;
    }

    .NavigationToggle:checked ~ .ToggleLabel .MenuBurger:before {
        transform: rotate(45deg);
        top: 0;
    }

    .NavigationToggle:checked ~ .ToggleLabel .MenuBurger:after {
        transform: rotate(-45deg);
        top: 0;
    }
}

.HeroShowcaseArea {
    background: url('../pictures/Banished_3.webp') center;
    background-size: cover;
    background-attachment: fixed;
    min-height: 690px;
    position: relative;
    display: flex;
    align-items: center;
}

.HeroBackdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--shadow-veil);
    z-index: 1;
}

.HeroContent {
    position: relative;
    z-index: 2;
    width: 100%;
}

.HeroTextBlock {
    max-width: 640px;
    color: var(--cloud-white);
}

.HeroSubtitle {
    font-size: 19px;
    margin-bottom: 8px;
    color: var(--golden-amber);
    font-weight: 520;
}

.HeroMainTitle {
    font-size: 52px;
    margin-bottom: 27px;
    color: var(--cloud-white);
    line-height: 1.2;
}

.HeroDescription {
    font-size: 18px;
    margin-bottom: 37px;
    line-height: 1.8;
}

.HeroPrimaryButton {
    display: inline-block;
    padding: 16px 32px;
    background: var(--golden-amber);
    color: var(--midnight-slate);
    text-decoration: none;
    font-weight: 620;
    font-size: 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.HeroPrimaryButton:hover {
    background: var(--rich-amber);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(252, 191, 73, 0.3);
}

.IntroductionBlock {
    padding: 97px 0;
    background: var(--soft-cream);
}

.IntroductionGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 67px;
    align-items: center;
}

.IntroHeading {
    font-size: 47px;
    margin-bottom: 29px;
    color: var(--midnight-slate);
}

.IntroDescription {
    font-size: 18px;
    margin-bottom: 24px;
    color: var(--ocean-deep);
    line-height: 1.8;
}

.IntroSecondary {
    font-size: 17px;
    margin-bottom: 41px;
    color: var(--forest-mist);
    line-height: 1.7;
}

.IntroActionButton {
    display: inline-block;
    padding: 14px 29px;
    background: var(--warm-coral);
    color: var(--cloud-white);
    text-decoration: none;
    font-weight: 550;
    border-radius: 28px;
    transition: all 0.35s ease;
}

.IntroActionButton:hover {
    background: var(--sunset-glow);
    transform: translateY(-3px);
    box-shadow: 0 7px 21px rgba(230, 48, 0, 0.25);
}

.IntroImageFrame img {
    width: 100%;
    border-radius: 9px;
    box-shadow: 0 13px 45px rgba(28, 39, 60, 0.12);
}

.GamesShowcaseSection {
    background: var(--midnight-slate);
    padding: 0;
}

.ShowcaseHeader {
    padding: 73px 0 89px;
}

.HeaderTextCenter {
    text-align: center;
}

.ShowcaseTitleBlock h2 {
    font-size: 51px;
    color: var(--cloud-white);
    margin-bottom: 23px;
    font-weight: 620;
}

.ShowcaseTitleBlock p {
    color: var(--cloud-white);
    font-size: 18px;
    margin-bottom: 0;
    opacity: 0.87;
}

.GamesShowcaseGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 340px);
    gap: 21px;
    margin-bottom: 73px;
}

.SmallGameCard {
    position: relative;
    overflow: hidden;
    border-radius: 11px;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.LargeGameCard {
    position: relative;
    overflow: hidden;
    border-radius: 11px;
    grid-row: span 2;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.LargeGameCard:nth-child(4) {
    grid-column: 2;
    grid-row: 1 / -1;
}

.LargeGameCard:nth-child(5) {
    grid-column: 3;
    grid-row: 1 / -1;
}

.GameCardContent {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.GameCardContent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.GameCardOverlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.89));
    color: var(--cloud-white);
    padding: 37px 26px 29px;
    transform: translateY(71%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.SmallGameCard:hover .GameCardOverlay,
.LargeGameCard:hover .GameCardOverlay {
    transform: translateY(0);
}

.SmallGameCard:hover .GameCardContent img,
.LargeGameCard:hover .GameCardContent img {
    transform: scale(1.07);
}

.SmallGameCard:hover,
.LargeGameCard:hover {
    transform: translateY(-7px);
}

.GameCardOverlay h4 {
    font-size: 21px;
    margin-bottom: 14px;
    color: var(--cloud-white);
}

.GameCardOverlay p {
    font-size: 15px;
    margin-bottom: 19px;
    line-height: 1.6;
    opacity: 0.92;
}

.GameActionButton {
    display: inline-block;
    padding: 11px 23px;
    background: var(--golden-amber);
    color: var(--midnight-slate);
    text-decoration: none;
    font-weight: 580;
    font-size: 14px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.GameActionButton:hover {
    background: var(--rich-amber);
    transform: translateY(-2px);
}

.ServicesShowcase {
    background: url('../pictures/Anno_1800_1.webp') center;
    background-size: cover;
    padding: 127px 0;
    text-align: center;
    position: relative;
    color: var(--cloud-white);
}

.ServicesBackground {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 31, 54, 0.78);
}

.ServicesContentWrapper {
    position: relative;
    z-index: 1;
    max-width: 890px;
    margin: 0 auto;
}

.ServicesShowcase h2 {
    font-size: 48px;
    color: var(--cloud-white);
    margin-bottom: 34px;
}

.ServicesShowcase p {
    margin-bottom: 44px;
    font-size: 20px;
    line-height: 1.7;
}

.ServicesMainButton {
    display: inline-block;
    color: var(--cloud-white);
    padding: 16px 41px;
    font-size: 17px;
    font-weight: 620;
    text-decoration: none;
    cursor: pointer;
    text-transform: capitalize;
    background: transparent;
    border: 2px solid var(--golden-amber);
    transition: all 0.42s ease;
    border-radius: 7px;
}

.ServicesMainButton:hover {
    background: var(--golden-amber);
    color: var(--midnight-slate);
    transform: translateY(-3px);
}

.ConsultationServicesArea {
    background: var(--midnight-slate);
    padding: 91px 0;
}

.ServicesGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 34px;
}

.ServiceCardItem {
    position: relative;
    overflow: hidden;
    border-radius: 9px;
    transition: transform 0.37s ease;
}

.ServiceCardInner {
    height: 450px;
    padding: 71px 31px 35px;
    background: linear-gradient(135deg, var(--warm-coral) 0%, var(--sunset-glow) 100%);
    color: var(--cloud-white);
    position: relative;
}

.ServiceCardInner:before {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 7px;
    background: var(--golden-amber);
    content: "";
    opacity: 0;
    transition: all 0.33s;
}

.ServiceCardItem:hover .ServiceCardInner:before {
    opacity: 1;
}

.ServiceCardItem:hover {
    transform: translateY(-6px);
}

.ServiceCardInner h4 {
    font-weight: 620;
    color: var(--cloud-white);
    text-transform: uppercase;
    margin-bottom: 26px;
    font-size: 20px;
}

.ServiceCardInner p {
    color: var(--cloud-white);
    margin-bottom: 31px;
    line-height: 1.6;
    font-size: 16px;
}

.ServicePrice {
    font-size: 34px;
    font-weight: 720;
    color: var(--cloud-white);
    margin-bottom: 27px;
    text-align: center;
}

.ServiceBookButton {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 13px 19px;
    background: transparent;
    color: var(--cloud-white);
    text-decoration: none;
    font-weight: 580;
    font-size: 15px;
    border: 2px solid var(--cloud-white);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.ServiceBookButton:hover {
    background: var(--cloud-white);
    color: var(--warm-coral);
}

.DetailedInfoSection {
    padding: 78px 0;
}

.DetailedInfoCenter {
    text-align: center;
}

.DetailedInfoContent {
    max-width: 890px;
    margin: 0 auto;
}

.DetailedInfoSubheading {
    font-size: 20px;
    display: block;
    margin-bottom: 7px;
    color: var(--warm-coral);
    font-size: 14px;
    font-weight: 620;
    letter-spacing: 2.4px;
    text-transform: uppercase;
}

.DetailedInfoHeading {
    font-size: 44px;
    font-weight: 620;
    margin-bottom: 18px;
}

.DetailedInfoContent p {
    font-size: 18px;
    font-weight: 420;
    line-height: 1.9;
    color: var(--forest-mist);
    margin-bottom: 19px;
}

.DetailedInfoAction {
    margin-top: 53px;
}

.DetailedInfoButton {
    cursor: pointer;
    border-radius: 5px;
    font-size: 17px;
    background: var(--warm-coral);
    border: 1px solid var(--warm-coral);
    color: var(--cloud-white);
    padding: 14px 27px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.DetailedInfoButton:hover {
    border: 1px solid var(--warm-coral);
    background: transparent;
    color: var(--warm-coral);
    transform: translateY(-2px);
}

.MainFooterSection {
    padding: 87px 0;
    background: var(--midnight-slate);
}

.FooterMainGrid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 54px;
}

.FooterBrandLogo {
    filter: brightness(0) invert(1);
    height: 82px;
    margin-bottom: 34px;
}

.FooterBrandHeading {
    font-size: 18px;
    color: var(--cloud-white);
    margin-bottom: 17px;
}

.FooterBrandColumn p {
    color: var(--cloud-white);
    line-height: 1.7;
}

.FooterLinksSection {
    display: flex;
    align-items: flex-start;
}

.FooterLinksGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 67px;
    width: 100%;
}

.FooterLinksHeading,
.FooterContactHeading {
    font-size: 18px;
    color: var(--cloud-white);
    margin-bottom: 23px;
}

.FooterLinksList {
    list-style: none;
}

.FooterLinksList li {
    margin-bottom: 13px;
}

.FooterLinksList a {
    color: rgba(255, 255, 255, 0.67);
    text-decoration: none;
    transition: color 0.3s ease;
}

.FooterLinksList a:hover {
    color: var(--cloud-white);
}

.FooterContactInfo p {
    color: var(--cloud-white);
    margin-bottom: 14px;
    line-height: 1.6;
}

.FooterNewsletterForm {
    display: flex;
    margin-top: 29px;
}

.FooterNewsletterInput {
    flex: 1;
    height: 61px;
    background: var(--cloud-white);
    border: none;
    padding: 0 19px;
    font-size: 16px;
    margin-right: 13px;
    border-radius: 6px;
}

.FooterNewsletterButton {
    height: 61px;
    background: var(--warm-coral);
    border: none;
    color: var(--cloud-white);
    padding: 0 26px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.FooterNewsletterButton:hover {
    background: var(--sunset-glow);
}

.FooterBottomSection {
    margin-top: 57px;
    text-align: center;
}

.FooterCopyrightBorder {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    padding-top: 34px;
}

.FooterCopyrightBorder p {
    color: var(--cloud-white);
    margin: 0;
}

@media (max-width: 1600px) {
    .ContentContainer {
        max-width: 1200px;
        padding: 0 19px;
    }
}

@media (max-width: 1280px) {
    .GamesShowcaseGrid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 320px);
    }

    .LargeGameCard:nth-child(4) {
        grid-column: 1;
        grid-row: 2 / -1;
    }

    .LargeGameCard:nth-child(5) {
        grid-column: 2;
        grid-row: 2 / -1;
    }
}

@media (max-width: 890px) {
    .HeroMainTitle {
        font-size: 38px;
    }

    .IntroductionGrid {
        grid-template-columns: 1fr;
        gap: 47px;
    }

    .IntroHeading {
        font-size: 34px;
    }

    .ShowcaseTitleBlock h2 {
        font-size: 36px;
    }

    .GamesShowcaseGrid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 280px);
    }

    .LargeGameCard:nth-child(4),
    .LargeGameCard:nth-child(5) {
        grid-column: 1;
        grid-row: auto;
    }

    .FooterMainGrid {
        grid-template-columns: 1fr;
        gap: 43px;
    }

    .FooterLinksGrid {
        grid-template-columns: 1fr;
        gap: 37px;
    }
}

@media (max-width: 640px) {
    .ContentContainer {
        padding: 0 16px;
    }

    .HeroMainTitle {
        font-size: 29px;
    }

    .IntroductionBlock {
        padding: 67px 0;
    }

    .IntroHeading {
        font-size: 28px;
    }

    .ServicesShowcase {
        padding: 87px 0;
    }

    .ServicesShowcase h2 {
        font-size: 34px;
    }

    .DetailedInfoHeading {
        font-size: 32px;
    }
}

.GamesShowcaseGrid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(4, 180px);
    gap: 13px;
    margin-bottom: 73px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.SmallGameCard:nth-child(1) {
    grid-column: 1 / 5;
    grid-row: 1 / 3;
}

.SmallGameCard:nth-child(2) {
    grid-column: 5 / 8;
    grid-row: 1 / 2;
}

.SmallGameCard:nth-child(3) {
    grid-column: 5 / 8;
    grid-row: 2 / 3;
}

.LargeGameCard:nth-child(4) {
    grid-column: 8 / 13;
    grid-row: 1 / 4;
}

.LargeGameCard:nth-child(5) {
    grid-column: 1 / 8;
    grid-row: 3 / 5;
}

.GameCardContent {
    position: relative;
    height: 100%;
    overflow: hidden;
    border-radius: 11px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.GameCardContent::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(252, 191, 73, 0.1) 0%, rgba(230, 48, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.SmallGameCard:hover .GameCardContent::before,
.LargeGameCard:hover .GameCardContent::before {
    opacity: 1;
}

.GameCardOverlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.95));
    color: var(--cloud-white);
    padding: 23px 19px 17px;
    transform: translateY(73%);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 2;
}

.GameCardOverlay h4 {
    font-size: 19px;
    margin-bottom: 11px;
    color: var(--cloud-white);
    text-shadow: 0 2px 8px rgba(0,0,0,0.7);
}

.GameCardOverlay p {
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.5;
    opacity: 0.93;
}

.GameActionButton {
    display: inline-block;
    padding: 9px 18px;
    background: linear-gradient(135deg, var(--golden-amber) 0%, var(--rich-amber) 100%);
    color: var(--midnight-slate);
    text-decoration: none;
    font-weight: 590;
    font-size: 13px;
    border-radius: 6px;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 15px rgba(252, 191, 73, 0.3);
}

.GameActionButton:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 7px 25px rgba(252, 191, 73, 0.5);
}

@media (max-width: 1280px) {
    .GamesShowcaseGrid {
        grid-template-columns: repeat(8, 1fr);
        grid-template-rows: repeat(5, 160px);
    }

    .SmallGameCard:nth-child(1) {
        grid-column: 1 / 4;
        grid-row: 1 / 3;
    }

    .SmallGameCard:nth-child(2) {
        grid-column: 4 / 6;
        grid-row: 1 / 2;
    }

    .SmallGameCard:nth-child(3) {
        grid-column: 4 / 6;
        grid-row: 2 / 3;
    }

    .LargeGameCard:nth-child(4) {
        grid-column: 6 / 9;
        grid-row: 1 / 4;
    }

    .LargeGameCard:nth-child(5) {
        grid-column: 1 / 6;
        grid-row: 3 / 6;
    }
}

@media (max-width: 890px) {
    .GamesShowcaseGrid {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(6, 140px);
        gap: 11px;
    }

    .SmallGameCard:nth-child(1) {
        grid-column: 1 / 3;
        grid-row: 1 / 3;
    }

    .SmallGameCard:nth-child(2) {
        grid-column: 3 / 5;
        grid-row: 1 / 2;
    }

    .SmallGameCard:nth-child(3) {
        grid-column: 3 / 5;
        grid-row: 2 / 3;
    }

    .LargeGameCard:nth-child(4) {
        grid-column: 1 / 5;
        grid-row: 3 / 5;
    }

    .LargeGameCard:nth-child(5) {
        grid-column: 1 / 5;
        grid-row: 5 / 7;
    }
}

@media (max-width: 640px) {
    .GamesShowcaseGrid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(8, 120px);
        gap: 9px;
    }

    .SmallGameCard:nth-child(1),
    .SmallGameCard:nth-child(2),
    .SmallGameCard:nth-child(3) {
        grid-column: 1 / 3;
        grid-row: auto;
    }

    .LargeGameCard:nth-child(4),
    .LargeGameCard:nth-child(5) {
        grid-column: 1 / 3;
        grid-row: span 2;
    }
}

.ContactHeroSection {
    background: url('../pictures/Tropico_6_1.webp') center;
    background-size: cover;
    padding: 127px 0 89px;
    text-align: center;
    position: relative;
    color: var(--cloud-white);
}

.ContactHeroBackdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 78, 99, 0.82);
}

.ContactHeroContent {
    position: relative;
    z-index: 1;
}

.ContactHeroText h1 {
    font-size: 49px;
    color: var(--cloud-white);
    margin-bottom: 23px;
    font-weight: 720;
}

.ContactHeroText p {
    font-size: 19px;
    line-height: 1.7;
    max-width: 630px;
    margin: 0 auto;
}

.ContactFormSection {
    padding: 134px 0;
    background: var(--soft-cream);
}

.ContactFormWrapper {
    display: flex;
    justify-content: center;
}

.ContactFormContainer {
    max-width: 890px;
    width: 100%;
    background: var(--cloud-white);
    border-radius: 13px;
    box-shadow: 0 19px 67px rgba(28, 39, 60, 0.11);
    overflow: hidden;
}

.ContactFormHeader {
    background: linear-gradient(135deg, var(--midnight-slate) 0%, var(--ocean-deep) 100%);
    padding: 47px 39px;
    text-align: center;
    color: var(--cloud-white);
}

.ContactFormHeader h3 {
    font-size: 37px;
    font-weight: 720;
    line-height: 1.3;
    color: var(--cloud-white);
    margin-bottom: 16px;
}

.ContactFormHeader p {
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.89);
    margin: 0;
}

.ContactFormContent {
    padding: 53px 39px;
}

.FormFieldsGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 29px;
}

.FormFieldGroup {
    position: relative;
}

.FormFieldFull {
    grid-column: 1 / -1;
}

.FormInputWrapper {
    position: relative;
}

.FormInputWrapper input {
    width: 100%;
    padding: 19px 24px;
    border: 2px solid #e8e9ea;
    border-radius: 8px;
    font-size: 17px;
    color: var(--midnight-slate);
    background: var(--cloud-white);
    transition: all 0.37s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    outline: none;
}

.FormInputWrapper input:focus {
    border-color: var(--golden-amber);
    box-shadow: 0 0 0 4px rgba(252, 191, 73, 0.15);
    transform: translateY(-2px);
}

.FormInputWrapper label {
    position: absolute;
    top: -12px;
    left: 18px;
    background: var(--cloud-white);
    padding: 0 8px;
    font-size: 14px;
    font-weight: 580;
    color: var(--ocean-deep);
}

.FormSelectWrapper {
    position: relative;
}

.FormSelectWrapper select {
    width: 100%;
    padding: 19px 24px;
    border: 2px solid #e8e9ea;
    border-radius: 8px;
    font-size: 17px;
    color: var(--midnight-slate);
    background: var(--cloud-white);
    transition: all 0.37s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    outline: none;
    appearance: none;
    cursor: pointer;
}

.FormSelectWrapper::after {
    content: '▼';
    position: absolute;
    right: 19px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--forest-mist);
    pointer-events: none;
}

.FormSelectWrapper select:focus {
    border-color: var(--golden-amber);
    box-shadow: 0 0 0 4px rgba(252, 191, 73, 0.15);
    transform: translateY(-2px);
}

.FormSelectWrapper label {
    position: absolute;
    top: -12px;
    left: 18px;
    background: var(--cloud-white);
    padding: 0 8px;
    font-size: 14px;
    font-weight: 580;
    color: var(--ocean-deep);
}

.FormTextareaWrapper {
    position: relative;
}

.FormTextareaWrapper textarea {
    width: 100%;
    padding: 19px 24px;
    border: 2px solid #e8e9ea;
    border-radius: 8px;
    font-size: 17px;
    color: var(--midnight-slate);
    background: var(--cloud-white);
    transition: all 0.37s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    outline: none;
    resize: vertical;
    min-height: 140px;
    font-family: 'Poppins', sans-serif;
}

.FormTextareaWrapper textarea:focus {
    border-color: var(--golden-amber);
    box-shadow: 0 0 0 4px rgba(252, 191, 73, 0.15);
    transform: translateY(-2px);
}

.FormTextareaWrapper label {
    position: absolute;
    top: -12px;
    left: 18px;
    background: var(--cloud-white);
    padding: 0 8px;
    font-size: 14px;
    font-weight: 580;
    color: var(--ocean-deep);
}

.FormSubmitSection {
    margin-top: 23px;
}

.FormSubmitWrapper {
    text-align: center;
}

.ContactSubmitButton {
    font-size: 18px;
    font-weight: 620;
    color: var(--cloud-white);
    padding: 19px 67px;
    display: inline-block;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--warm-coral) 0%, var(--sunset-glow) 100%);
    border: none;
    cursor: pointer;
    transition: all 0.39s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 32px rgba(230, 48, 0, 0.25);
}

.ContactSubmitButton:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 48px rgba(230, 48, 0, 0.35);
    background: linear-gradient(135deg, var(--sunset-glow) 0%, var(--warm-coral) 100%);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--midnight-slate) 0%, var(--ocean-deep) 100%);
    color: var(--cloud-white);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.15);
}

.cookie-banner.show {
    transform: translateY(0);
}

.CookieBannerContainer {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 21px;
}

.CookieBannerContent {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 23px 0;
    gap: 27px;
}

.CookieBannerText p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.92);
}

.CookieAcceptButton {
    background: var(--golden-amber);
    color: var(--midnight-slate);
    border: none;
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 580;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.CookieAcceptButton:hover {
    background: var(--rich-amber);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(252, 191, 73, 0.3);
}

@media (max-width: 890px) {
    .ContactHeroText h1 {
        font-size: 36px;
    }

    .ContactFormSection {
        padding: 89px 0;
    }

    .ContactFormContent {
        padding: 37px 24px;
    }

    .ContactFormHeader {
        padding: 34px 24px;
    }

    .ContactFormHeader h3 {
        font-size: 28px;
    }

    .FormFieldsGrid {
        grid-template-columns: 1fr;
        gap: 21px;
    }

    .CookieBannerContent {
        flex-direction: column;
        text-align: center;
        gap: 19px;
    }
}

@media (max-width: 640px) {
    .ContactFormContainer {
        margin: 0 13px;
    }

    .ContactSubmitButton {
        padding: 16px 43px;
        font-size: 16px;
    }
}

.ThankYouHeroSection {
    padding: 134px 0;
    background: linear-gradient(135deg, var(--soft-cream) 0%, #f9f7f1 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.ThankYouTextCenter {
    text-align: center;
    max-width: 890px;
    margin: 0 25%;
}

.ThankYouIconWrapper {
    margin-bottom: 34px;
}

.ThankYouCheckIcon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 89px;
    height: 89px;
    background: linear-gradient(135deg, var(--golden-amber) 0%, var(--rich-amber) 100%);
    color: var(--cloud-white);
    border-radius: 50%;
    font-size: 43px;
    font-weight: 720;
    box-shadow: 0 13px 45px rgba(252, 191, 73, 0.3);
    animation: checkPulse 2s ease-in-out infinite;
}

@keyframes checkPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.ThankYouMainTitle {
    font-size: 47px;
    color: var(--midnight-slate);
    margin-bottom: 27px;
    font-weight: 720;
}

.ThankYouDescription {
    font-size: 19px;
    line-height: 1.8;
    color: var(--ocean-deep);
    margin-bottom: 53px;
}

.ThankYouDetailsBox {
    background: var(--cloud-white);
    padding: 43px 37px;
    border-radius: 13px;
    box-shadow: 0 11px 37px rgba(28, 39, 60, 0.08);
    margin-bottom: 47px;
    text-align: left;
}

.ThankYouDetailsBox h3 {
    font-size: 23px;
    color: var(--midnight-slate);
    margin-bottom: 29px;
    text-align: center;
}

.ThankYouStepsList {
    display: flex;
    flex-direction: column;
    gap: 23px;
}

.ThankYouStep {
    display: flex;
    align-items: flex-start;
    gap: 19px;
}

.StepNumber {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 37px;
    height: 37px;
    background: var(--warm-coral);
    color: var(--cloud-white);
    border-radius: 50%;
    font-size: 16px;
    font-weight: 620;
    flex-shrink: 0;
}

.ThankYouStep p {
    margin: 0;
    font-size: 17px;
    line-height: 1.6;
    color: var(--forest-mist);
    padding-top: 7px;
}

.ThankYouActions {
    display: flex;
    gap: 23px;
    justify-content: center;
    flex-wrap: wrap;
}

.ThankYouPrimaryButton {
    display: inline-block;
    padding: 17px 41px;
    background: linear-gradient(135deg, var(--warm-coral) 0%, var(--sunset-glow) 100%);
    color: var(--cloud-white);
    text-decoration: none;
    font-weight: 620;
    font-size: 17px;
    border-radius: 8px;
    transition: all 0.37s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 28px rgba(230, 48, 0, 0.25);
}

.ThankYouPrimaryButton:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 42px rgba(230, 48, 0, 0.35);
}

.ThankYouSecondaryButton {
    display: inline-block;
    padding: 17px 41px;
    background: transparent;
    color: var(--midnight-slate);
    text-decoration: none;
    font-weight: 620;
    font-size: 17px;
    border: 2px solid var(--midnight-slate);
    border-radius: 8px;
    transition: all 0.37s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ThankYouSecondaryButton:hover {
    background: var(--midnight-slate);
    color: var(--cloud-white);
    transform: translateY(-3px);
}

@media (max-width: 890px) {
    .ThankYouMainTitle {
        font-size: 34px;
    }

    .ThankYouDetailsBox {
        padding: 29px 23px;
    }

    .ThankYouStepsList {
        gap: 19px;
    }

    .ThankYouActions {
        flex-direction: column;
        align-items: center;
    }

    .ThankYouPrimaryButton,
    .ThankYouSecondaryButton {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}