\/* SaharaPlace Project Details Styles */

:root {
    --sahara-primary: #e4b45a;
    --sahara-secondary: #c59d5f;
    --sahara-dark: #0a192f;
    --sahara-darker: #0a1525;
    --sahara-light: #ccd6f6;
    --sahara-text: #8892b0;
    --sahara-sand-light: #f5e7c8;
    --sahara-sand-dark: #d9bc7e;
}

/* Base Styles */
.sahara-page {
    background: var(--sahara-dark);
    color: var(--sahara-light);
    font-family: 'Poppins', sans-serif;
}

.sahara-bg-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.sahara-bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3z' fill='%23c59d5f' fill-opacity='0.08' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.6;
    z-index: 0;
}

/* Hero Section */
.sahara-hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 0 20px;
    z-index: 1;
}

.sahara-hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.sahara-logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.sahara-emblem {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--sahara-primary), var(--sahara-secondary));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(197, 157, 95, 0.3);
    position: relative;
    border: 4px solid rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.sahara-emblem::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    background: linear-gradient(135deg, rgba(197, 157, 95, 0.5), rgba(228, 180, 90, 0.5));
    z-index: -1;
    animation: pulse 2s infinite;
}

.sahara-emblem::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%);
    animation: shimmerSahara 3s infinite;
}

.sahara-emblem span {
    color: var(--sahara-dark);
    font-weight: bold;
    font-size: 64px;
    font-family: 'Poppins', sans-serif;
    transform: rotate(-45deg);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.sahara-emblem-small {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--sahara-primary), var(--sahara-secondary));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(45deg);
    margin-right: 10px;
}

.sahara-emblem-small span {
    color: var(--sahara-dark);
    font-weight: bold;
    font-size: 18px;
    transform: rotate(-45deg);
}

.sahara-title {
    font-size: 6rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--sahara-primary), var(--sahara-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.sahara-subtitle {
    font-size: 1.8rem;
    color: var(--sahara-light);
    margin-bottom: 30px;
    font-weight: 300;
}

.sahara-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.sahara-badge {
    background: rgba(228, 180, 90, 0.2);
    color: var(--sahara-primary);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    border: 1px solid var(--sahara-secondary);
}

.sahara-badge.world-cup {
    background: linear-gradient(135deg, rgba(197, 157, 95, 0.3), rgba(228, 180, 90, 0.3));
    border: 1px solid var(--sahara-primary);
    font-weight: bold;
}

.sahara-dunes-header {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: var(--sahara-secondary);
    clip-path: polygon(0% 100%, 5% 60%, 10% 85%, 15% 70%, 20% 90%, 25% 75%, 30% 100%, 40% 70%, 50% 90%, 60% 80%, 75% 60%, 80% 100%, 90% 80%, 95% 90%, 100% 100%);
    opacity: 0.5;
    z-index: 1;
}

/* Content Sections */
.sahara-content {
    position: relative;
    z-index: 2;
    padding: 50px 0;
}

.sahara-section {
    padding: 80px 0;
    position: relative;
}

.sahara-section-title {
    color: var(--sahara-primary);
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    position: relative;
}

.sahara-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--sahara-primary);
    border-radius: 3px;
}

.sahara-section-title i {
    margin-right: 15px;
    font-size: 2rem;
    vertical-align: middle;
}

.sahara-card {
    background: rgba(10, 25, 47, 0.6);
    border: 1px solid rgba(228, 180, 90, 0.2);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.sahara-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--sahara-light);
    margin-bottom: 20px;
}

.sahara-card p:last-child {
    margin-bottom: 0;
}

/* Mission Section */
.mission-image {
    position: relative;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    margin-top: 30px;
}

.mission-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 25, 47, 0.8), transparent);
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(10, 21, 37, 0.6);
    border: 1px solid rgba(228, 180, 90, 0.15);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--sahara-primary), var(--sahara-secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(228, 180, 90, 0.3);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(228, 180, 90, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--sahara-primary);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--sahara-primary), var(--sahara-secondary));
    color: var(--sahara-dark);
    transform: scale(1.1);
}

.feature-card h3 {
    color: var(--sahara-primary);
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.feature-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-card ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: var(--sahara-text);
    line-height: 1.5;
}

.feature-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--sahara-primary);
    font-weight: bold;
}

.worldcup-card {
    border: 1px solid rgba(228, 180, 90, 0.3);
    background: linear-gradient(135deg, rgba(10, 21, 37, 0.8), rgba(10, 25, 47, 0.6));
}

.worldcup-card .feature-icon {
    background: rgba(228, 180, 90, 0.2);
}

/* Philosophy Section */
.philosophy-card {
    text-align: center;
}

.philosophy-lead {
    font-size: 1.3rem !important;
    font-weight: 300;
    margin-bottom: 40px !important;
    color: var(--sahara-light) !important;
}

.philosophy-points {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.philosophy-point {
    max-width: 250px;
}

.philosophy-point i {
    font-size: 2.5rem;
    color: var(--sahara-primary);
    margin-bottom: 20px;
}

.philosophy-point h3 {
    color: var(--sahara-light);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.philosophy-point p {
    color: var(--sahara-text) !important;
    font-size: 1rem !important;
}

/* Timeline Section */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: var(--sahara-primary);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.timeline-item:nth-child(odd) {
    justify-content: flex-start;
}

.timeline-content {
    width: 45%;
    padding: 20px;
    background: rgba(100, 255, 218, 0.05);
    border: 1px solid rgba(228, 180, 90, 0.2);
    border-radius: 10px;
    position: relative;
}

.timeline-item::before {
    content: attr(data-year);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--sahara-primary);
    color: var(--sahara-dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    z-index: 1;
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 30px;
    transform: translateX(-50%);
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--sahara-primary);
    box-shadow: 0 0 10px rgba(228, 180, 90, 0.5);
}

.timeline-content h3 {
    color: var(--sahara-primary);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.timeline-content p {
    color: var(--sahara-text);
    line-height: 1.6;
}

.world-cup-item {
    background: rgba(228, 180, 90, 0.1);
    border: 1px solid rgba(228, 180, 90, 0.3);
}

.world-cup-item h3 {
    color: var(--sahara-primary);
}

/* CTA Section */
.cta-container {
    background: linear-gradient(135deg, rgba(10, 21, 37, 0.8), rgba(10, 25, 47, 0.8));
    border: 1px solid rgba(228, 180, 90, 0.2);
    border-radius: 15px;
    padding: 60px 40px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
}

.cta-container h2 {
    color: var(--sahara-primary);
    font-size: 2rem;
    margin-bottom: 20px;
}

.cta-container p {
    font-size: 1.1rem;
    color: var(--sahara-light);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.sahara-btn {
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.sahara-btn.primary {
    background: linear-gradient(135deg, var(--sahara-primary), var(--sahara-secondary));
    color: var(--sahara-dark);
    border: none;
}

.sahara-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(228, 180, 90, 0.3);
}

.sahara-btn.secondary {
    background: transparent;
    color: var(--sahara-primary);
    border: 2px solid var(--sahara-primary);
}

.sahara-btn.secondary:hover {
    background: rgba(228, 180, 90, 0.1);
    transform: translateY(-3px);
}

/* Footer */
.sahara-footer {
    background: rgba(10, 21, 37, 0.9);
    padding: 60px 0 20px;
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(228, 180, 90, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 0 20px;
}

.footer-section h3 {
    color: var(--sahara-primary);
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--sahara-primary);
}

.sahara-mini-logo {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer-project-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--sahara-light);
}

.footer-section p {
    color: var(--sahara-text);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section i {
    color: var(--sahara-primary);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    border: 2px solid var(--sahara-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sahara-primary);
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--sahara-primary);
    color: var(--sahara-dark);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid rgba(228, 180, 90, 0.1);
    color: var(--sahara-text);
}

/* Animations */
@keyframes shimmerSahara {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

/* Scroll Reveal */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.reveal-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Navigation Styles */
.cta-link span {
    background: linear-gradient(135deg, var(--sahara-primary), var(--sahara-secondary));
    color: var(--sahara-dark) !important;
    padding: 8px 20px !important;
    border-radius: 30px;
    font-weight: 600;
}

.cta-link:hover span {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(228, 180, 90, 0.3);
}

/* Media Queries */
@media (max-width: 992px) {
    .sahara-title {
        font-size: 4rem;
    }
    
    .sahara-subtitle {
        font-size: 1.5rem;
    }
    
    .sahara-emblem {
        width: 120px;
        height: 120px;
    }
    
    .sahara-emblem span {
        font-size: 50px;
    }
    
    .philosophy-points {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .sahara-title {
        font-size: 3rem;
    }
    
    .sahara-subtitle {
        font-size: 1.2rem;
    }
    
    .sahara-emblem {
        width: 100px;
        height: 100px;
    }
    
    .sahara-emblem span {
        font-size: 40px;
    }
    
    .sahara-section-title {
        font-size: 2rem;
    }
    
    .sahara-card {
        padding: 30px;
    }
    
    .sahara-section {
        padding: 60px 0;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        justify-content: flex-start;
        padding-left: 60px;
    }
    
    .timeline-item:nth-child(odd) {
        justify-content: flex-start;
    }
    
    .timeline-content {
        width: 100%;
    }
    
    .timeline-item::before {
        left: 30px;
        transform: translateX(-50%);
    }
    
    .timeline-item::after {
        left: 30px;
    }
    
    .cta-container {
        padding: 40px 20px;
    }
    
    .cta-container h2 {
        font-size: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-section p {
        justify-content: center;
    }
    
    .sahara-mini-logo {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .sahara-title {
        font-size: 2.5rem;
    }
    
    .sahara-subtitle {
        font-size: 1rem;
    }
    
    .sahara-emblem {
        width: 80px;
        height: 80px;
    }
    
    .sahara-emblem span {
        font-size: 30px;
    }
    
    .sahara-badges {
        gap: 10px;
    }
    
    .sahara-badge {
        padding: 6px 15px;
        font-size: 0.8rem;
    }
    
    .philosophy-points {
        flex-direction: column;
        align-items: center;
    }
    
    .sahara-btn {
        width: 100%;
        padding: 12px 20px;
        justify-content: center;
    }
}

/* Project Plan Section Styles */
.project-plan-card {
    padding: 50px 40px;
}

.project-plan-header {
    text-align: center;
    margin-bottom: 40px;
}

.project-plan-header h3 {
    font-size: 1.8rem;
    color: var(--sahara-primary);
    margin-bottom: 20px;
}

.project-lead {
    font-size: 1.2rem !important;
    max-width: 800px;
    margin: 0 auto 30px !important;
    color: var(--sahara-light) !important;
}

.project-plan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.project-plan-item {
    background: rgba(10, 21, 37, 0.6);
    border: 1px solid rgba(228, 180, 90, 0.15);
    border-radius: 10px;
    padding: 30px;
    transition: all 0.3s ease;
}

.project-plan-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(228, 180, 90, 0.3);
}

.plan-icon {
    width: 60px;
    height: 60px;
    background: rgba(228, 180, 90, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--sahara-primary);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.project-plan-item:hover .plan-icon {
    background: linear-gradient(135deg, var(--sahara-primary), var(--sahara-secondary));
    color: var(--sahara-dark);
    transform: scale(1.1);
}

.project-plan-item h4 {
    color: var(--sahara-primary);
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.project-plan-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.project-plan-item ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: var(--sahara-text);
    line-height: 1.5;
}

.project-plan-item ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--sahara-primary);
    font-weight: bold;
}

.project-phases {
    margin-top: 50px;
    margin-bottom: 50px;
}

.project-phases h4 {
    text-align: center;
    font-size: 1.5rem;
    color: var(--sahara-primary);
    margin-bottom: 30px;
}

.phases-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.phase-item {
    flex: 1;
    min-width: 220px;
    background: rgba(10, 21, 37, 0.6);
    border: 1px solid rgba(228, 180, 90, 0.15);
    border-radius: 10px;
    padding: 25px;
    position: relative;
    transition: all 0.3s ease;
}

.phase-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(228, 180, 90, 0.3);
}

.phase-badge {
    position: absolute;
    top: -12px;
    left: 20px;
    background: linear-gradient(135deg, var(--sahara-primary), var(--sahara-secondary));
    color: var(--sahara-dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.phase-item h5 {
    color: var(--sahara-light);
    font-size: 1.2rem;
    margin: 15px 0 10px;
}

.phase-item p {
    color: var(--sahara-text);
    margin-bottom: 15px;
    font-size: 0.95rem !important;
}

.phase-timeline {
    font-size: 0.85rem;
    color: var(--sahara-primary);
    font-weight: 600;
}

.world-cup-phase {
    background: linear-gradient(135deg, rgba(10, 21, 37, 0.8), rgba(10, 25, 47, 0.6));
    border: 1px solid rgba(228, 180, 90, 0.3);
}

.success-metrics {
    margin-bottom: 40px;
}

.success-metrics h4 {
    text-align: center;
    font-size: 1.5rem;
    color: var(--sahara-primary);
    margin-bottom: 30px;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    text-align: center;
}

.metric-item {
    background: rgba(10, 21, 37, 0.6);
    border: 1px solid rgba(228, 180, 90, 0.15);
    border-radius: 10px;
    padding: 25px 15px;
    transition: all 0.3s ease;
}

.metric-item:hover {
    transform: translateY(-5px);
    border-color: rgba(228, 180, 90, 0.3);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.metric-value {
    font-size: 2rem;
    color: var(--sahara-primary);
    font-weight: bold;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.metric-value i {
    font-size: 1.2rem;
    margin-left: 5px;
}

.metric-label {
    color: var(--sahara-light);
    font-size: 0.9rem;
}

.download-plan {
    text-align: center;
    margin-top: 40px;
}

/* Media Queries for Project Plan Section */
@media (max-width: 768px) {
    .project-plan-card {
        padding: 40px 20px;
    }
    
    .phases-container {
        flex-direction: column;
    }
    
    .phase-item {
        width: 100%;
    }
    
    .project-plan-header h3 {
        font-size: 1.5rem;
    }
    
    .project-lead {
        font-size: 1.1rem !important;
    }
}

@media (max-width: 480px) {
    .metrics-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .project-plan-card {
        padding: 30px 15px;
    }
}
