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

:root {
    --primary-blue: #4a2c5a;
    --blue-gradient-top: #6b4c7a;
    --blue-gradient-bottom: #2d1b36;
    --green: #c4975a;
    --white: #ffffff;
    --gray-light: #f5f5f5;
    --gray-medium: #666666;
    --gray-dark: #333333;
    --border-color: #ddd;
    --purple-dark: #2d1b36;
    --purple-medium: #4a2c5a;
    --purple-light: #6b4c7a;
    --gold: #c4975a;
    --gold-hover: #b8895a;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--gray-light);
    line-height: 1.6;
}

/* Navigation */
.navbar {
    background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple-medium) 100%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    display: block;
}

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

.nav-left {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-logo h2 {
    color: var(--white);
    font-size: 1.8rem;
    margin: 0;
}

.nav-left-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-right {
    display: flex;
    align-items: center;
}

.nav-right-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-link {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link:hover {
    color: #b8d4f0;
    background: rgba(255, 255, 255, 0.1);
}

.nav-login {
    color: var(--white) !important;
}

.nav-login:hover {
    color: #b8d4f0 !important;
    background: rgba(255, 255, 255, 0.1);
}

.nav-login i {
    font-size: 0.9rem;
}

.nav-register {
    background: #4caf50 !important;
    color: var(--white) !important;
    border-radius: 6px;
    padding: 10px 20px;
    font-weight: 600;
}

.nav-register:hover {
    background: #45a049 !important;
    color: var(--white) !important;
}

.nav-recruiting {
    color: var(--white) !important;
}

.nav-recruiting:hover {
    color: #b8d4f0 !important;
    background: rgba(255, 255, 255, 0.1);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    margin-left: 20px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: all 0.3s ease;
}

.back-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.back-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-left-menu {
        display: none;
    }
    
    .nav-left {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .nav-right-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background-color: #1e4a72;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        gap: 15px;
    }

    .nav-right-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-left-menu {
        display: none;
    }
}

/* Search Stats Bar */
.search-stats-bar {
    background: var(--white);
    padding: 8px 0;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
    position: fixed;
    top: 60px;
    width: 100%;
    z-index: 999;
}

.search-stats-text {
    font-size: 14px;
    color: var(--gray-dark);
    margin: 0;
}

.stats-number {
    color: var(--green);
    font-weight: 600;
}

/* Job Alerts Section */
.job-alerts-section {
    padding-top: 135px;
    min-height: 50vh;
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, var(--blue-gradient-top) 0%, var(--blue-gradient-bottom) 100%);
    position: relative;
}

.job-alerts-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    min-height: 400px;
    padding: 80px 40px;
    gap: 80px;
    position: relative;
}

/* Left Section */
.left-section {
    flex: 1;
    color: var(--white);
    text-align: left;
}

.left-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.left-section p {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 30px;
    opacity: 0.95;
}

.view-alerts-link {
    color: #87ceeb;
    text-decoration: underline;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.view-alerts-link:hover {
    color: var(--white);
}

/* Right Section */
.right-section {
    flex: 0 0 auto;
    display: flex;
    justify-content: flex-end;
    position: relative;
    z-index: 10;
}

.form-card {
    width: 380px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    padding: 35px 25px;
    position: absolute;
    top: -100px;
    right: 0;
}

.form-card h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-dark);
    margin-bottom: 25px;
    text-align: left;
}

.job-alert-form {
    width: 100%;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--gray-dark);
    font-size: 14px;
}

.form-group input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s ease;
    background: var(--white);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.form-group input::placeholder {
    color: #999;
}

.email-toggle {
    position: absolute;
    right: 14px;
    top: 37px;
    color: var(--gray-medium);
    cursor: pointer;
    font-size: 14px;
}

.create-alert-btn {
    width: 100%;
    background: var(--green);
    color: var(--white);
    border: none;
    padding: 14px 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-bottom: 20px;
}

.create-alert-btn:hover {
    background: var(--gold-hover);
}

.legal-text {
    font-size: 12px;
    color: var(--gray-medium);
    line-height: 1.4;
    text-align: left;
}

.legal-text a {
    color: var(--primary-blue);
    text-decoration: none;
}

.legal-text a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .job-alerts-section {
        min-height: auto;
        padding-top: 95px;
        padding-bottom: 40px;
    }

    .job-alerts-container {
        flex-direction: column;
        gap: 40px;
        padding: 60px 20px;
        text-align: center;
        min-height: auto;
    }

    .left-section {
        text-align: center;
    }

    .left-section h1 {
        font-size: 2rem;
    }

    .right-section {
        justify-content: center;
        position: static;
    }

    .form-card {
        width: 100%;
        max-width: 400px;
        padding: 30px 20px;
        position: static;
        top: auto;
        right: auto;
    }

    .learn-more-section {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    .job-alerts-section {
        padding: 60px 0 40px;
    }

    .job-alerts-container {
        padding: 40px 15px;
        gap: 30px;
        min-height: auto;
    }

    .left-section h1 {
        font-size: 1.8rem;
    }

    .left-section p {
        font-size: 1rem;
    }

    .form-card {
        padding: 25px 15px;
        position: static;
        top: auto;
        right: auto;
    }
}

/* Learn More Section */
.learn-more-section {
    padding: 160px 0 80px;
    background: var(--white);
}

.learn-more-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
    padding: 0 20px;
}

.learn-more-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}

.handwritten-title {
    font-family: 'Comic Sans MS', cursive, sans-serif;
    font-size: 1.1rem;
    color: var(--primary-blue);
    font-style: italic;
    line-height: 1.3;
    margin-bottom: 30px;
    font-weight: 400;
    position: relative;
}

.handwritten-title::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    width: 60px;
    height: 40px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 40"><path d="M10 5 Q30 25 50 15" stroke="%234a90e2" stroke-width="2" fill="none" marker-end="url(%23arrowhead)"/><defs><marker id="arrowhead" markerWidth="10" markerHeight="7" refX="9" refY="3.5" orient="auto"><polygon points="0 0, 10 3.5, 0 7" fill="%234a90e2"/></marker></defs></svg>') no-repeat center;
    background-size: contain;
    transform: translateX(-50%);
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-overlay:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-overlay i {
    color: var(--white);
    font-size: 1.2rem;
    margin-left: 3px;
}

.company-caption {
    font-size: 0.9rem;
    color: var(--gray-medium);
    margin-bottom: 20px;
    text-align: center;
    width: 100%;
}

.company-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.company-logo {
    height: 30px;
    width: auto;
    max-width: 80px;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.company-logo:hover {
    opacity: 1;
}

.learn-more-right {
    padding-left: 20px;
}

.benefits-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-dark);
    margin-bottom: 30px;
    line-height: 1.2;
}

.benefit-section {
    margin-bottom: 25px;
}

.benefit-section h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-dark);
    margin-bottom: 6px;
    line-height: 1.3;
}

.benefit-section p {
    font-size: 0.85rem;
    color: var(--gray-medium);
    line-height: 1.4;
    margin: 0;
}

/* Responsive Design for Learn More Section */
@media (max-width: 768px) {
    .learn-more-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .learn-more-left {
        align-items: center;
    }

    .learn-more-right {
        padding-left: 0;
        text-align: left;
    }

    .handwritten-title {
        text-align: center;
    }

    .benefits-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .learn-more-section {
        padding: 50px 0;
    }

    .learn-more-container {
        gap: 40px;
        padding: 0 15px;
    }

    .handwritten-title {
        font-size: 1.2rem;
    }

    .company-logos {
        gap: 10px;
    }

    .company-logo {
        height: 25px;
        max-width: 60px;
    }

    .benefits-title {
        font-size: 1.4rem;
        margin-bottom: 30px;
    }

    .benefit-section {
        margin-bottom: 25px;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple-medium) 100%);
    color: var(--white);
    padding: 60px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
    align-items: start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-brand h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.social-section h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.875rem;
}

.footer-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-column ul li a:hover {
    color: var(--white);
    transform: translateX(4px);
}

.footer-column ul li a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--white);
    transition: width 0.3s ease;
}

.footer-column ul li a:hover::before {
    width: 100%;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin: 0;
    letter-spacing: 0.25px;
}

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