@font-face {
    font-family: Tajawal;
    src: url('assets/fonts/Tajawal-Regular.ttf');
}

body {
    font-family: 'Tajawal', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #f4f4f4;
    text-align: center;
}

header, footer {
    width: 100%;
    padding: 15px;
    background: #2d2c52;
    color: white;
    text-align: center;
    position: relative;
}

header {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 90%;
}

.logo {
    max-width: 100px;
    margin-bottom: 15px;
}

h1 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
}

p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    padding: 12px 20px;
    font-size: 18px;
    color: white;
    background: #fd5057;
    text-decoration: none;
    border-radius: 8px;
    transition: 0.3s;
    margin: 5px;
}

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