html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Roboto, sans-serif;
    overflow-x: hidden;
}

/*--------------------
Page Container
--------------------*/
.page {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem 1rem;
    min-height: 100vh;
    width: 100%;
    text-align: center;
    color: #fff;
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
}

h1 {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 4rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

/*--------------------
Buttons
--------------------*/
.buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    max-width: 1400px;
    margin-bottom: 2rem;
}

.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    font-style: italic;
    text-decoration: none;
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
    padding-left: 2rem;
    padding-right: 2rem;
    background: linear-gradient(135deg, #ff758c, #ff7eb3);
    color: #fff;
    font-weight: normal;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    flex: 1 1 200px;
    text-align: center;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    transform: skewX(-20deg);
}

.btn:hover::after {
    left: 100%;
}

.btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.btn span {
    position: relative;
    z-index: 1;
}

/*--------------------
Background Image
--------------------*/
.bg-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transform: scale(1);
    transition: transform 0.1s linear;
}

#signature {
    position: fixed;
    bottom: 60px;
    left: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transform: translateX(-50%);
    z-index: 5;
}
.signatureImage {
    height: 50px;
    width: 100px;
}

#signature p{
    text-align: center;
    font-family: cursive;
}
#signature .designation{
    text-align: center;
    font-family: cursive;
    color: #15F4EE;
}
#signature a{
    font-weight: bold;
    font-style: italic;
    color: #333333;
}

/*--------------------
Responsive Styles
--------------------*/
@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }

    .btn {
        flex: 1 1 100%;
        padding: 0.7rem 1.2rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    .buttons {
        gap: 0.5rem;
    }
}