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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f5f5f5;
}

.navbar {
    background: #ebf1ff;
    box-shadow: 0 2px 4px rgb(0 0 0 / 72%);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.1rem;
    font-weight: bold;
    color: #1e4d8b;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #555;
    transition: color 0.3s;
}

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

.nav-register {
    background: #1e4d8b;
    color: white !important;
    padding: 0.6rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

.nav-register:hover {
    background: #153a6a !important;
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #1e4d8b;
    margin: 3px 0;
    transition: 0.3s;
}

.hero {
    background: #1e4d8b;
    color: white;
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-text .tagline {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-text .eligibility {
    margin-bottom: 2rem;
}

.hero-image {
    text-align: center;
    position: relative;
}

.stethoscope-icon {
    width: 300px;
    height: 300px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
}

.register-btn {
    background: #4db8e8;
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

.register-btn:hover {
    background: #3da9d9;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0,0,0,0.3);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.why-join {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin: 3rem 0;
}

.why-join h2 {
    font-size: 2.5rem;
    color: #1e4d8b;
    margin-bottom: 2rem;
}

.why-join ul {
    list-style: none;
}

.why-join li {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
}

.why-join li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #4db8e8;
    font-size: 1.5rem;
    font-weight: bold;
}

.why-us {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.why-us-card {
    background: #ffffff;
    color: #000000;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.why-us-card h3 {
    font-size: 1.5rem;
    margin: 1rem 0;
}

.why-us-card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.why-us-card ul {
    list-style: none;
    text-align: left;
}

.why-us-card li {
    margin-bottom: 0.8rem;
}

.partners {
    background: transparent;
    margin: 3rem 0;
}

.partners h2 {
    font-size: 2.5rem;
    color: #1e4d8b;
    margin-bottom: 2rem;
}

.partners-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.partners-list li {
    list-style: none;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.contact {
    background: #1f4d8b;
    color: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    margin: 3rem 0;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.contact-info {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.details-btn {
    background: white;
    color: #1e4d8b;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s;
}

.details-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

.acp-badge {
    position: absolute;
    top: 3rem;
    right: 2rem;
    background-image: url(/img/acp-logo.jpg);
    width: 86px;
    background-repeat: no-repeat;
    height: 200px;
    background-size: contain;
}

.section {
    margin-bottom: 4rem;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.section h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    border-bottom: 3px solid #c9302c;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.form-list, .link-list {
    list-style: none;
}

.form-list li, .link-list li {
    margin-bottom: 1rem;
}

.form-list a, .link-list a {
    color: #e67e22;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s;
    display: inline-block;
}

.form-list a:hover, .link-list a:hover {
    color: #c9302c;
    transform: translateX(5px);
}

.form-list a:before, .link-list a:before {
    content: "→ ";
    margin-right: 0.5rem;
}

.download-btn {
    background: #27ae60;
    color: white;
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    transition: background 0.3s;
}

.download-btn:hover {
    background: #229954;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.modal-header {
    background: #1e4d8b;
    color: white;
    padding: 2rem;
    border-radius: 12px 12px 0 0;
    position: relative;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.8rem;
}

.close {
    color: white;
    position: absolute;
    right: 2rem;
    top: 2rem;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    opacity: 0.8;
}

.modal-body {
    padding: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input[type="text"], .form-group input[type="email"], .form-group input[type="tel"] {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #4db8e8;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0.5rem 0;
}

.radio-label input[type="radio"] {
    margin-right: 0.8rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.submit-btn {
    background: #4db8e8;
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: #3da9d9;
    transform: translateY(-1px);
}

.submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.success-modal .modal-content {
    max-width: 400px;
    text-align: center;
}

.success-icon {
    font-size: 4rem;
    color: #27ae60;
    margin-bottom: 1rem;
}

.success-message {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.success-btn {
    background: #1e4d8b;
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.success-btn:hover {
    background: #153a6a;
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .modal-content {
        width: 95%;
        margin: 2% auto;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-wrapper {
        position: fixed;
        top: 60px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: white;
        flex-direction: column;
        padding: 2rem;
        transition: right 0.3s;
        box-shadow: -2px 0 5px rgba(0,0,0,0.1);
    }

    .nav-wrapper.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        display: block;
        padding: 1rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stethoscope-icon {
        width: 200px;
        height: 200px;
    }

    .acp-badge {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }

    .hero-image {
        display: none
    }
}
