:root {
    --primary: #2962FF;
    --primary-light: #768FFF;
    --primary-dark: #0039CB;
    --secondary: #FF6D00;
    --secondary-light: #FF9E40;
    --secondary-dark: #C43C00;
    --dark: #212121;
    --light: #f5f5f5;
    --grey: #757575;
    --grey-light: #e0e0e0;
}

/* Base Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Navbar Customization */
.navbar.is-primary {
    background-color: var(--primary);
}

.navbar-item:hover {
    background-color: var(--primary-dark) !important;
}

/* Hero Section */
.hero.is-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

.hero .title {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

/* Card Styles */
.card {
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.card-content {
    flex-grow: 1;
}

/* Pricing Cards */
.title.is-2.has-text-primary {
    margin-bottom: 1rem;
}

/* Form Styles */
.box {
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.field:not(:last-child) {
    margin-bottom: 1.5rem;
}

/* Footer */
.footer {
    background-color: var(--dark);
    color: white;
    padding: 3rem 1.5rem;
    margin-top: auto;
}

.footer a {
    color: var(--primary-light);
}

.footer a:hover {
    color: white;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.is-hidden {
    display: none !important;
}

#thank-you {
    animation: fadeIn 0.5s ease-in-out;
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .hero .title {
        font-size: 2rem;
    }
    
    .hero .subtitle {
        font-size: 1.1rem;
    }
    
    .navbar-menu {
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    }
}

/* Content Styles for Terms/Privacy */
.content h2.title.is-3 {
    margin-top: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--grey-light);
}

.content ul {
    margin-left: 1.5rem;
}

.content li:not(:last-child) {
    margin-bottom: 0.5rem;
}

/* Icon Enhancements */
.icon.is-large {
    margin-bottom: 1rem;
}

.has-text-primary {
    color: var(--primary) !important;
}