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

body {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    color: #111;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.top-accent-bar {
    background-color: #fbc02d;
    height: 15px;
    width: 100%;
}

.global-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 40px;
}

.header {
    background-color: #ffffff;
    padding: 15px 0;
    border-bottom: 1px solid #eaeaea;
}

.header-layout {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: auto;
    height: 48px;
    display: block;
}

.main-content {
    flex: 1;
    padding: 40px 0 120px 0;
    display: flex;
    justify-content: center;
    min-height: 120vh;
}

.content-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.image-wrapper {
    width: 100%;
    max-width: 800px;
    display: flex;
    justify-content: center;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.action-wrapper {
    width: 100%;
    max-width: 800px;
    display: flex;
    justify-content: center;
}

.cta-button {
    background-color: #fbc02d;
    color: #111;
    border: none;
    padding: 18px 36px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.cta-button:hover {
    background-color: #f9a825;
}

.cta-button:active {
    transform: scale(0.98);
}

.footer {
    background-color: #141414;
    padding: 40px 0;
}

.footer-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-text {
    color: #fbc02d;
    font-size: 14px;
    font-weight: bold;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-link {
    color: #fbc02d;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
}

.footer-link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .global-container {
        padding: 0 20px;
    }
    .header {
        padding: 10px 0;
    }
    .logo-icon {
        height: 36px;
    }
    .footer-layout {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        text-align: center;
    }
    .footer-links {
        flex-direction: column;
        gap: 12px;
    }
}