/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f7f9fc;
    color: #2c3e50;
    line-height: 1.6;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #4e54c8, #8f94fb);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 30px;
}

.cta-buttons .btn {
    display: inline-block;
    padding: 12px 24px;
    margin: 10px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #fff;
    color: #4e54c8;
    border: none;
}

.btn-primary:hover {
    background-color: #e0e0ff;
}

.btn-outline {
    border: 2px solid #fff;
    color: #fff;
}

.btn-outline:hover {
    background-color: #fff;
    color: #4e54c8;
}

/* Featured Carriers */
.featured-carriers {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
}

.featured-carriers h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.carrier-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.carrier-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carrier-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

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

.pricing {
    margin: 15px 0;
    font-size: 1.1rem;
}

.btn-secondary {
    background-color: #4e54c8;
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
}

.btn-secondary:hover {
    background-color: #3c40a8;
}

/* How It Works */
.how-it-works {
    padding: 60px 20px;
    background-color: #f0f3f8;
    text-align: center;
}

.how-it-works h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.step {
    max-width: 300px;
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: 0.3s ease;
}

.step:hover {
    transform: scale(1.05);
}

.step-icon {
    font-size: 2rem;
    color: #4e54c8;
    margin-bottom: 10px;
}

/* Footer */
.site-footer {
    background-color: #2c3e50;
    color: #fff;
    padding: 40px 20px;
}

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

.footer-section h5 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li a {
    color: #b0bec5;
    text-decoration: none;
}

.footer-section ul li a:hover {
    text-decoration: underline;
}

.social-icons a {
    color: #b0bec5;
    font-size: 1.2rem;
    margin-right: 10px;
    transition: color 0.3s ease;
}

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

.copyright {
    text-align: center;
    padding-top: 20px;
    font-size: 0.9rem;
    color: #b0bec5;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-primary {
    background: #3b82f6;
    color: white;
}

.btn-secondary {
    background: #f1f5f9;
    color: #1e293b;
}

.text-danger {
    color: #ef4444;
}
