html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

/* Common Styles for All Sections */
section {
    padding: 80px 0;
    position: relative;
}

/* Standard Heading Styles */
.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title span {
    color: #f47935;
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section-title span:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #f47935;
}

/* Standard Content Text */
p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    font-family: 'Poppins', sans-serif;
}

h3 {
    font-size: 1.5rem;
    color: #333;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Standard Container */
.container {
    max-width: 1327px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Standard Button Style */
.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background: #007bff;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #0056b3;
    transform: translateY(-3px);
}

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

/* Standard Grid Layout */
.grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    .section-title span {
        font-size: 2rem;
    }

    p {
        font-size: 1rem;
    }
}