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

body {
    font-family: 'Inter Tight', sans-serif;
    background: radial-gradient(circle at 30% 12%, rgba(63, 94, 163, 0.5) 0%, rgba(4, 0, 38, 0.5) 30%), #141830;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    position: relative;
    width: 100%;
    max-width: 832px;

    margin: 0 auto;
    min-height: 100vh;
    padding: 104px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Decorative Image */
.decorative-image {
    position: absolute;
    top: 433.47px;
    right: 0px;
    z-index: 0;
    pointer-events: none;
}

.decorative-image .desktop-image {
    display: block;
    width: 440.54px;
    height: 545.07px;
}

.decorative-image .mobile-image {
    display: none;
}

/* Header Section */
.header {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: 0;
    width: 515px;
}

.welcome-text {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.21em;
    letter-spacing: 4px;
    color: #E5C781;
    margin-bottom: 0;
    text-align: center;
}

.main-title {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    font-size: 64px;
    line-height: 1.21em;
    color: #FFFFFF;
    text-align: center;
    margin-top: 0;
}

/* Main Content Section */
.main-content {
    position: relative;
    z-index: 1;
    max-width: 793px;
    width:100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
    margin-bottom: 32px;
}

.announcement-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.announcement-box {
    display: flex;
    align-items: center;
    gap: 16px;
}

.announcement-bar {
    width: 3px;
    min-height: 60px;
    background: #C19D65;
    border-radius: 30px;
    flex-shrink: 0;
    align-self: stretch;
}

.announcement-text {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.21em;
    color: #FFFFFF;
    flex: 1;
}

.nhs-reference {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.21em;
    color: #FFFFFF;
}

.nhs-reference a {
    color:white;
    text-decoration: underline;
}

.locations-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 294px;
}

.locations-title {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.21em;
    color: #E5C781;
}

.locations-list {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.21em;
    color: #FFFFFF;
    list-style: disc;
    margin-left:16px;
    padding-left: 0;
}

/* Contact Section */
.contact-section {
    position: relative;
    z-index: 1;
    max-width: 793px;
    width:100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 32px;


}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.21em;
    color: #E5C781;
}

.contact-value {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.21em;
    color: #FFFFFF;
    text-decoration: none;
}

.contact-value:hover {
    text-decoration: underline;
}

.cta-button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: #414145;
    border-radius: 40px;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.21em;
    color: #FFFFFF;
    text-decoration: none;
    text-align: center;
    width: fit-content;
    align-self: center;
    transition: background 0.3s ease;
    margin-right: auto;
}

.cta-button:hover {
    background: #525256;
}

/* Mobile Styles (768px and below) */
@media (max-width: 640px) {
    .container {
        background: radial-gradient(circle at 7% 12%, rgba(63, 94, 163, 1) 0%, rgba(4, 0, 38, 0.5) 42%), #141830;
        padding: 76px 20px 0;
        min-height: 1396px;
        max-width: 100%;
        align-items: center;
    }

    .decorative-image {
        bottom: 20px;
        top:unset;
        right: unset;
        left: 50%;
        transform: translateX(-50%);
    }

    .decorative-image .desktop-image {
        display: none;
    }

    .decorative-image .mobile-image {
        display: block;
        width: 329.46px;
        height: 407.64px;
    }

    .header {
        width: 100%;
        margin-bottom: 32px;
        margin-left: 0;
        align-self: center;
    }

    .welcome-text {
        font-size: 20px;
        letter-spacing: 20%;
    }

    .main-title {
        font-size: 36px;
    }

    .main-content {
        width: 100%;
        gap: 32px;
        margin-top: 32px;
        margin-bottom: 32px;
    }

    .announcement-section {
        gap: 20px;
    }

    .locations-section {
        width: 100%;
      
    }

    .locations-list {
        width: 220px;
    }

    .contact-section {
        width: 100%;
     
        gap: 32px;
    }

    .contact-info {
        width: 100%;
       
    }

    .contact-item {

    }

    .cta-button {
        width: 100%;
        max-width: 100%;
    }
}
