/* General styling for the section */
section {
    text-align: center;
    padding: 40px 20px;
    background-color: #f8f9fa; /* Light background */
}

/* Styling for the heading */
h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #222;
    margin-bottom: 10px;
}

/* Styling for the paragraph */
p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
}

/* Container for the topic boxes */
.topics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Individual topic box */
.topic-box {
    background-color: #222; /* Dark card background */
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
}

/* Hover effect for topic boxes */
.topic-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.logo-text {
  font-family: 'Raleway', sans-serif; /* Change font */
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

.app-screenshot {
    width: 500px;  /* Set desired width */
    height: auto;  /* Maintains aspect ratio */
    border-radius: 5px; /* Optional: Adds rounded corners */
    border: 1px solid #ddd; /* Optional: Adds a light border */
}