/* style.css */
body {
    font-family: sans-serif;
    margin: 0;
    background-color: #f5f5f5;
}

.grid-description {
    grid-column: 1 / -1; /* Span the entire grid width */
    text-align: center;
    margin-bottom: 20px;
}

.grid-description h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 10px;
}

.container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
}

.card {
    background-color: #ffffff;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: box-shadow 0.3s ease;
}

.card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.card img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ec6631;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #d63333;
}

/* Feature Section Styles */
.feature-section {
    background-color: #f8f8f8;
    padding: 10px 5px;
    text-align: center;
}

.feature-section h2 {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 10px;
}

.features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.feature {
    width: 300px;
    margin: 10px;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.feature i {
    font-size: 40px;
    color: #ec6631;
    margin-bottom: 10px;
}

/* Get Started Section Styles */
.get-started-section {
    padding: 40px 20px;
    text-align: center;
}

.get-started-section h2 {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 10px;
}

/* Separator Styles */
.separator {
    height: 1px;
    background-color: #ddd;
    margin: 20px 0;
}

.video-section {
    margin: 50px 0; /* Top and bottom margin */
    padding: 30px; 
    background-color: #f8f8f8; /* Light gray background */
}
  
.video-section h2 {
    text-align: center;
    margin-bottom: 20px;
}
    
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 10px;
}

.video-item {
    position: relative; /* Required for the padding trick */
    width: 100%; 
}
  
.video-item iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
  
.video-item::before { 
    content: "";
    display: block;
    padding-top: 56.25%; /* 9/16 = 0.5625 (for 16:9 aspect ratio) */
}