/* Title section */

.page-title-section {
    text-align: center;
    padding: 50px 20px;
    position: relative;
    overflow: hidden;
    margin-top: 100px;
}

.page-title {
    font-size: 36px;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    background: linear-gradient(90deg, #0056b3, #d9534f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
    margin: 0;
    padding-bottom: 10px;
    border-bottom: 3px solid #d9534f;
    overflow: hidden;
}

.page-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-20deg);
    transition: all 0.3s ease;
}

.page-title:hover::before {
    animation: shine 1.5s forwards;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

@media (max-width: 768px) {
    .page-title-section {
        margin-top: 140px;
    }
}

/* Section 1 */

.access-conditions-section {
    padding: 50px 30px;
    max-width: 1100px;
    margin: 0 auto;
    background-color: #f3f7fa;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.decorative-line {
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, #e63946 0%, #2c4a72 100%);
    border-radius: 2px;
    margin-bottom: 20px;
}

.access-title {
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    color: #2c4a72;
    margin-top: 10px;
    font-family: 'Roboto', sans-serif;
}

.access-text {
    font-size: 20px;
    color: #333;
    font-weight: bold;
    text-align: center;
    margin: 30px 0 40px;
    line-height: 1.4;
    font-family: 'Poppins', sans-serif;
}

.project-description p {
    font-size: 18px;
    color: #3b3f45;
    line-height: 1.8;
    margin-bottom: 25px;
    font-family: 'Poppins', sans-serif;
    text-align: justify;
}

.access-criteria {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.criteria-section {
    background-color: #ffffff;
    border-left: 6px solid #2c4a72;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.criteria-section:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.criteria-section h3 {
    font-size: 20px;
    color: #2c4a72;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
    position: relative;
}

.criteria-section h3 .highlight {
    color: #e63946;
    font-weight: bold;
}

.criteria-section p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

/* Stiluri Responsive */
@media (max-width: 768px) {
    .access-criteria {
        grid-template-columns: 1fr;
    }

    .access-title {
        font-size: 24px;
    }

    .access-text {
        font-size: 18px;
    }

    .project-description p {
        font-size: 16px;
    }
}

.btn {
    display: block;
    width: 100%;
    max-width: 650px; 
    margin: 20px auto; 
    padding: 16px 24px; 
    font-size: 1.1rem;
    text-align: center;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    box-sizing: border-box;
  }
  
  .btn-download {
    background-color: #e63946;
  }


  .btn:hover {
    opacity: 0.9;
  }

  @media (max-width: 600px) {
    .btn {
      width: calc(100% - 20px); 
    }
  }

