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

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    text-align: center;
    background: none;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
    color: white;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 40px;
    font-weight: 300;
    color: white;
}

/* CET Section */
.cet-section {
    padding: 100px 0;
    background: none;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
}


.cet-content {
    max-width: 900px;
    margin: 0 auto;
}

.cet-intro {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 40px;
    color: white;
    text-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
}

/* CET Stands For */
.cet-stands {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.cet-item {
    text-align: center;
    padding: 40px 30px;
    border-radius: 30px;
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    background: rgba(17, 32, 29, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cet-item:hover {
    transform: translateY(-10px);
}

.cet-letter {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #fcC005;
    margin-bottom: 15px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
}

.cet-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0;
    color: white;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.cet-description {
    font-size: 1.2rem;
    text-align: center;
    margin-top: 20px;
    color: white;
    text-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
}

/* CET Phase */
.cet-phase {
    margin-bottom: 40px;
}

.phase-focus {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fcC005;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.phase-list {
    list-style: none;
    margin-left: 20px;
}

.phase-list li {
    padding: 12px 0;
    position: relative;
    padding-left: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    text-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
}

.phase-list li:last-child {
    border-bottom: none;
}

.phase-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #fcC005;
    font-weight: bold;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.phase-outcome {
    padding: 30px;
    border-radius: 30px;
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.1);
    text-align: center;
    background: rgba(17, 32, 29, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.phase-outcome h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #fcC005;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.phase-outcome p {
    color: white;
    font-size: 1.1rem;
    text-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
}

/* CET Prevents/Creates */
.cet-prevents,
.cet-creates {
    margin-bottom: 40px;
}

.cet-prevents h3,
.cet-creates h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #fcC005;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.cet-list {
    list-style: none;
    margin-left: 20px;
}

.cet-list li {
    padding: 12px 0;
    position: relative;
    padding-left: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    text-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
}

.cet-list li:last-child {
    border-bottom: none;
}

.cet-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #fcC005;
    font-weight: bold;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

/* Positioning Section */
.positioning-section {
    padding: 100px 0;
    background: none;
    color: white;
    text-align: center;
}

.positioning-content {
    max-width: 600px;
    margin: 0 auto;
}

.positioning-intro {
    font-size: 1.4rem;
    font-weight: 300;
    opacity: 0.9;
    color: white;
    text-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cet-stands {
        grid-template-columns: 1fr;
    }
    
    .hero {
        padding: 80px 0 60px;
    }
    
    .cet-section {
        padding: 60px 0;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Scroll animations */
.cet-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.cet-section.visible {
    opacity: 1;
    transform: translateY(0);
}