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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background: #f4f4f4;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1000px;
    margin: auto;
    padding: 20px;
}

.navbar {
    background: #1f2a44;
    color: white;
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .logo {
    font-size: 20px;
    font-weight: bold;
}

.navbar .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.navbar .nav-links a {
    color: white;
    text-decoration: none;
}

.navbar .nav-links a.active {
    text-decoration: underline;
}

.registration-info {
    background: white;
    padding: 30px;
    margin-top: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.registration-info .buttons {
    margin-top: 20px;
}

.btn {
    text-decoration: none;
    padding: 10px 20px;
    display: inline-block;
    border-radius: 4px;
    font-weight: bold;
}

.btn.orange {
    background: #425e95f6;
    color: white;
}

.pricing-table {
    background: white;
    margin-top: 30px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.pricing-table h2 {
    margin-bottom: 15px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

table, th, td {
    border: 1px solid #ccc;
}

th, td {
    padding: 10px;
    text-align: center;
}

.footer {
    text-align: center;
    padding: 15px;
    background: #1f2a44;
    color: white;
    margin-top: 30px;
}

.registration-form {
    background: white;
    padding: 20px;
    margin-top: 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.registration-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.registration-form input,
.registration-form select {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.join-asv {
    background: #fff;
    padding: 20px;
    margin-top: 30px;
    border-left: 5px solid #425eff;
    box-shadow: 0 0 5px rgba(0,0,0,0.05);
    border-radius: 6px;
}

.join-asv p {
    margin-bottom: 10px;
}
