* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Manrope', sans-serif;
}

:root {
    --primary-color: #2784ff;
    --text-color: #2c3e50;
    --bg-color: #f8f9fa;
    --card-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

/* Hero Section */
.hero-section {
    height: 80vh;
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('resources/jobinterview.png') no-repeat center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.hero-content {
    text-align: center;
    animation: fadeUp 1s ease-out;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 2rem;
    text-align: center;
    color: var(--text-color);
}

.intro-text {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
    line-height: 1.8;
    color: #666;
    animation: fadeUp 1s ease-out;
}

/* Cards Section */
.cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease;
    width: calc(33.33% - 2rem);
    max-width: 350px;
    animation: scaleIn 0.5s ease-out;
    text-align: left;
    line-height: 1.6;
}

.card:hover {
    transform: translateY(-5px);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    transition: transform 0.3s ease-in-out;
}

.card-icon:hover {
    transform: scale(1.2);
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.values-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.tag {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    transition: transform 0.2s ease;
}

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

/* Masterpiece Section */
.masterpiece-section {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 4rem;
}

/* Main Card Styles */
.main-card {
    background: var(--primary-color);
    color: white;
    padding: 4rem;
    border-radius: 20px;
    animation: scaleIn 0.5s ease-out;
    text-align: center;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    animation: fadeIn 0.8s ease-out;
    text-align: left;
    line-height: 1.6;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    color: var(--primary-color);
    font-size: 3rem;
    margin-bottom: 1rem;
    transition: transform 0.3s ease-in-out;
}

.feature-icon:hover {
    transform: scale(1.2);
    color: #ff6b6b;
}

.feature h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .cards-container {
        gap: 1.5rem;
    }

    .card {
        width: calc(50% - 1rem); /* Two cards per row on medium screens */
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr); /* Two columns on medium screens */
    }
}

@media (max-width: 768px) {
    .container {
        padding: 2rem 1rem;
    }

    .card {
        width: 100%;
    }

    .main-card {
        padding: 2rem;
        max-width: 100%;
    }

    .features-grid {
        grid-template-columns: 1fr; /* Single column on small screens */
    }

    .feature {
        padding: 1.5rem;
    }
}