/* Common Styles for All Pages */

/* Page Header */
.page-header {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 200px;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 80px;
    background-color: #f5f5f5;
}

.page-header:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
    color: #ffffff;
}

.page-header h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
}

.breadcrumb {
    font-size: 16px;
}

.breadcrumb a {
    color: #fbc02d;
    transition: all 0.3s ease;
}

.breadcrumb a:hover {
    color: #ffffff;
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 36px;
    color: #333;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

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

.section-title p {
    font-size: 18px;
    color: #757575;
    margin-top: 10px;
}

/* Main Content Containers */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Padding */
section {
    padding: 60px 0;
}

section.bg-light {
    background-color: #f9f9f9;
}

section.bg-dark {
    background-color: #333;
    color: #fff;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #388e3c;
    color: #ffffff;
    border-radius: 4px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn:hover {
    background-color: #2e7d32;
    color: #ffffff;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid #388e3c;
    color: #388e3c;
}

.btn-outline:hover {
    background-color: #388e3c;
    color: #ffffff;
}

.btn-light {
    background-color: #ffffff;
    color: #388e3c;
}

.btn-light:hover {
    background-color: #f5f5f5;
    color: #2e7d32;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 14px;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Text Formatting */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-primary {
    color: #388e3c;
}

.text-secondary {
    color: #fbc02d;
}

.text-accent {
    color: #f57c00;
}

.text-muted {
    color: #757575;
}

/* Spacing Utilities */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }

.ml-0 { margin-left: 0; }
.ml-1 { margin-left: 8px; }
.ml-2 { margin-left: 16px; }
.ml-3 { margin-left: 24px; }
.ml-4 { margin-left: 32px; }
.ml-5 { margin-left: 48px; }

.mr-0 { margin-right: 0; }
.mr-1 { margin-right: 8px; }
.mr-2 { margin-right: 16px; }
.mr-3 { margin-right: 24px; }
.mr-4 { margin-right: 32px; }
.mr-5 { margin-right: 48px; }

.pt-0 { padding-top: 0; }
.pt-1 { padding-top: 8px; }
.pt-2 { padding-top: 16px; }
.pt-3 { padding-top: 24px; }
.pt-4 { padding-top: 32px; }
.pt-5 { padding-top: 48px; }

.pb-0 { padding-bottom: 0; }
.pb-1 { padding-bottom: 8px; }
.pb-2 { padding-bottom: 16px; }
.pb-3 { padding-bottom: 24px; }
.pb-4 { padding-bottom: 32px; }
.pb-5 { padding-bottom: 48px; }

.pl-0 { padding-left: 0; }
.pl-1 { padding-left: 8px; }
.pl-2 { padding-left: 16px; }
.pl-3 { padding-left: 24px; }
.pl-4 { padding-left: 32px; }
.pl-5 { padding-left: 48px; }

.pr-0 { padding-right: 0; }
.pr-1 { padding-right: 8px; }
.pr-2 { padding-right: 16px; }
.pr-3 { padding-right: 24px; }
.pr-4 { padding-right: 32px; }
.pr-5 { padding-right: 48px; }

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
}

/* Cards and Shadows */
.card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* Lists */
ul.feature-list {
    list-style-type: none;
    padding-left: 0;
}

ul.feature-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 10px;
}

ul.feature-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #388e3c;
    font-weight: bold;
}

/* Responsive Adjustments */
@media screen and (max-width: 992px) {
    .page-header h1 {
        font-size: 36px;
    }
    
    .section-title h2 {
        font-size: 32px;
    }
}

@media screen and (max-width: 768px) {
    .page-header {
        height: 150px;
    }
    
    .page-header h1 {
        font-size: 30px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .btn {
        padding: 10px 25px;
    }
}

@media screen and (max-width: 576px) {
    .page-header h1 {
        font-size: 26px;
    }
    
    .section-title h2 {
        font-size: 24px;
    }
    
    section {
        padding: 40px 0;
    }
}