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

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

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

/* Hero Section */
.hero {
    padding: 80px 0 60px;
    background-color: #f8f9fa;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.hero-text {
    flex: 1;
    max-width: 500px;
}

.google-logo {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.g-blue { color: #4285f4; }
.o-red { color: #ea4335; }
.o-yellow { color: #fbbc05; }
.l-green { color: #34a853; }
.e-red { color: #ea4335; }

.careers {
    color: #5f6368;
    font-weight: 400;
}

.hero-title {
    font-size: 40px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #202124;
}

.hero-description {
    font-size: 16px;
    color: #5f6368;
    margin-bottom: 32px;
    line-height: 1.5;
}

.cta-button {
    background-color: #1a73e8;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.cta-button:hover {
    background-color: #1557b0;
    box-shadow: 0 2px 8px rgba(26, 115, 232, 0.3);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container {
    position: relative;
    width: 400px;
    height: 400px;
}

.main-image {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    position: absolute;
    top: 50px;
    left: 50px;
    z-index: 2;
    transition: opacity 0.3s ease;
}

.decorative-circles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.circle {
    position: absolute;
    border: 2px solid;
    border-radius: 50%;
}

.circle-1 {
    width: 120px;
    height: 120px;
    border-color: #fbbc05;
    top: 20px;
    right: 20px;
    z-index: 1;
}

.circle-2 {
    width: 80px;
    height: 80px;
    border-color: #34a853;
    bottom: 40px;
    left: 20px;
    z-index: 1;
}

.circle-3 {
    width: 60px;
    height: 60px;
    border-color: #ea4335;
    top: 10px;
    left: 10px;
    z-index: 1;
}

/* Spotlight Section */
.spotlight {
    padding: 40px 0 80px;
    background-color: white;
}

.spotlight-title {
    font-size: 14px;
    font-weight: 500;
    color: #5f6368;
    letter-spacing: 1px;
    margin-bottom: 48px;
    text-align: left;
}

.spotlight-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.spotlight-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e8eaed;
}

.spotlight-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.spotlight-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 24px;
}

.card-content h4 {
    font-size: 18px;
    font-weight: 500;
    color: #202124;
    margin-bottom: 12px;
    line-height: 1.3;
}

.card-content p {
    font-size: 14px;
    color: #5f6368;
    line-height: 1.5;
}

/* Job Description Section */
.job-description {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.job-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.job-image {
    flex: 1;
}

.job-image img {
    width: 100%;
    max-width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
}

.job-details {
    flex: 1;
}

.job-section-title {
    font-size: 14px;
    font-weight: 500;
    color: #5f6368;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.job-title {
    font-size: 32px;
    font-weight: 400;
    color: #202124;
    margin-bottom: 24px;
}

.job-benefits {
    list-style: none;
    margin-bottom: 24px;
}

.job-benefits li {
    font-size: 16px;
    color: #202124;
    margin-bottom: 8px;
    padding-left: 0;
}

.job-description-text {
    font-size: 16px;
    color: #5f6368;
    line-height: 1.6;
}

/* Application Form Section */
.application-form {
    padding: 80px 0;
    background-color: white;
}

.form-title {
    font-size: 32px;
    font-weight: 400;
    color: #202124;
    text-align: center;
    margin-bottom: 48px;
}

.candidate-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #202124;
    margin-bottom: 8px;
}

.required {
    color: #ea4335;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #dadce0;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.2s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a73e8;
    box-shadow: 0 0 0 2px rgba(26, 115, 232, 0.2);
}

.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #dadce0;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.2s ease;
    resize: vertical;
    min-height: 100px;
}

.form-group input[type="file"] {
    width: 100%;
    padding: 8px;
    border: 1px solid #dadce0;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
}

.file-info {
    display: block;
    font-size: 12px;
    color: #5f6368;
    margin-top: 4px;
}

.submit-button {
    width: 100%;
    background-color: #1a73e8;
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    margin-top: 24px;
}

.submit-button:hover {
    background-color: #1557b0;
    box-shadow: 0 2px 8px rgba(26, 115, 232, 0.3);
}

/* Checkbox Styles */
.checkbox-group {
    margin-bottom: 24px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #202124;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #dadce0;
    border-radius: 2px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.2s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background-color: #1a73e8;
    border-color: #1a73e8;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-text {
    font-size: 13px;
    color: #5f6368;
    margin-top: 4px;
    margin-left: 30px;
    line-height: 1.4;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.faq-title {
    font-size: 32px;
    font-weight: 400;
    color: #202124;
    text-align: center;
    margin-bottom: 48px;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto 60px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.faq-item {
    background: white;
    border-radius: 8px;
    border: 1px solid #e8eaed;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 500;
    color: #202124;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s ease;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-icon {
    font-size: 12px;
    color: #5f6368;
    transition: transform 0.2s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 20px 20px;
    font-size: 14px;
    color: #5f6368;
    line-height: 1.5;
}

/* Social Section */
.social-section {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.social-title {
    font-size: 16px;
    color: #202124;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f8f9fa;
    color: #5f6368;
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-link:hover {
    background-color: #e8eaed;
    color: #202124;
}

/* Footer */
.footer {
    background-color: white;
    padding: 40px 0;
    border-top: 1px solid #e8eaed;
}

.footer-content {
    text-align: center;
}

.footer-logo {
    font-size: 24px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.careers-text {
    color: #5f6368;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        gap: 48px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .google-logo {
        font-size: 36px;
        justify-content: center;
    }
    
    .image-container {
        width: 300px;
        height: 300px;
    }
    
    .main-image {
        width: 200px;
        height: 200px;
        top: 50px;
        left: 50px;
    }
    
    .spotlight-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .job-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .job-title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 40px 0 60px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .google-logo {
        font-size: 32px;
    }
    
    .spotlight-grid {
        grid-template-columns: 1fr;
    }
    
    .form-title {
        font-size: 28px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-title {
        font-size: 28px;
    }
}