@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: #FBFBFB;
    color: #1B1B1E;
    overflow-x: hidden;
}

/* Dev banner styles */
.dev-banner {
    background: linear-gradient(45deg, #F54B64, #F56E0F);
    color: white;
    padding: 15px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(245, 75, 100, 0.3);
}

.dev-banner i {
    margin-right: 8px;
}

.dev-banner a {
    color: white;
    text-decoration: underline;
    margin-left: 10px;
}

/* Navbar styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 5%;
    z-index: 10;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #1B1B1E;
}

.logo span {
    color: #F56E0F;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: #1B1B1E;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #F54B64;
}

.cta-button {
    background: linear-gradient(45deg, #F54B64, #F56E0F);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(245, 75, 100, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(245, 75, 100, 0.4);
}

/* Footer styles */
.footer {
    background-color: #1B1B1E;
    color: white;
    padding: 60px 5% 30px;
    margin-top: 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
}

.footer-logo .logo {
    color: white;
    margin-bottom: 15px;
    font-size: 28px;
}

.footer-logo .logo span {
    color: #F56E0F;
}

.footer-logo p {
    color: #aaa;
    line-height: 1.6;
}

.footer-links {
    flex: 2;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.link-column {
    min-width: 150px;
}

.link-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: white;
}

.link-column a {
    display: block;
    color: #aaa;
    margin-bottom: 10px;
    text-decoration: none;
    transition: color 0.3s;
}

.link-column a:hover {
    color: #F56E0F;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #aaa;
    font-size: 14px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #aaa;
    font-size: 20px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #F56E0F;
}

/* Responsive styles */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .dev-banner {
        font-size: 14px;
        padding: 10px 15px;
    }

    .nav-links {
        display: none;
    }
}