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

body {
    font-family: 'Arial', sans-serif;
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
}

body .container {
    max-width: 100%;
    padding: 0;
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

body .content-blocks {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: calc(100vh - 180px);
    margin: 0;
    padding: 0;
}

.landing-container {
    width: 100%;
    max-width: 1000px;
    text-align: left;
    padding: 1.5rem 2rem;
    box-sizing: border-box;
}

.content-box {
    background-color: white;
    border-radius: 10px;
    padding: 2.5rem 3rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    width: 100%;
}

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

.text-content {
    flex: 1;
    max-width: 60%;
}

.hat-container {
    flex: 0 0 auto;
    display: flex;
    justify-content: flex-end;
    margin-left: 2rem;
}

.university-hat-svg {
    width: 180px;
    height: 180px;
    fill: #2D3142;
    transition: transform 0.3s ease;
}

.university-hat-svg:hover {
    transform: rotate(5deg);
}

.app-title {
    font-size: 4rem;
    font-weight: 700;
    color: #2D3142;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.catchphrase {
    font-size: 1.5rem;
    color: #4F5D75;
    margin-bottom: 2rem;
    font-style: italic;
}

.login-button {
    display: inline-block;
    padding: 0.8rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    background-color: #2D3142;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.login-button:hover {
    background-color: #4F5D75;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(45, 49, 66, 0.3);
}

.footer-card {
    margin-top: 0;
    margin-bottom: 1rem;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    body .content-blocks {
        min-height: calc(100vh - 160px);
    }
    
    .landing-container {
        padding: 1rem;
        max-width: 100%;
    }
    
    .content-box {
        padding: 1.5rem;
        width: 100%;
        margin: 0.5rem 0;
    }
    
    .content-layout {
        flex-direction: column-reverse;
        gap: 1.5rem;
    }
    
    .text-content {
        text-align: center;
        max-width: 100%;
        margin-top: 0;
    }
    
    .hat-container {
        margin-left: 0;
        width: 100%;
        justify-content: center;
        padding-top: 0.5rem;
    }
    
    .university-hat-svg {
        width: 140px;
        height: 140px;
    }
    
    .app-title {
        font-size: 3rem;
    }
    
    .catchphrase {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .landing-container {
        padding: 0.5rem;
        width: 100%;
    }
    
    .content-box {
        padding: 1.25rem;
        border-radius: 8px;
        margin: 0;
    }
    
    .content-layout {
        gap: 1rem;
    }
    
    .app-title {
        font-size: 2.5rem;
    }
    
    .university-hat-svg {
        width: 110px;
        height: 110px;
    }
    
    .login-button {
        padding: 0.7rem 2rem;
        font-size: 1.1rem;
        width: 100%;
    }
} 