/* Section 1: GD Hero Section - White Background */
.gd-hero-section {
    background: #ffffff;
    padding: 80px 60px;
    position: relative;
}

.gd-hero-fluid {
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
}

.gd-hero-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    margin: 0 auto;
}

.gd-hero-content {
    flex: 1.2;
}

.gd-hero-image {
    flex: 1;
}

.gd-hero-header {
    margin-bottom: 25px;
}

.gd-hero-badge {
    display: inline-block;
    background: rgba(250, 152, 5, 0.1);
    color: #fa9805;
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid rgba(250, 152, 5, 0.15);
    margin-bottom: 12px;
}

.gd-hero-title {
    font-size: 38px;
    font-weight: 800;
    color: #0a0e27;
    margin: 0;
    line-height: 1.2;
}

.gd-hero-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #fa9805;
    margin-top: 12px;
    border-radius: 2px;
}

.gd-hero-subtitle {
    font-size: 22px;
    font-weight: 500;
    color: #4a5568;
    margin: 12px 0 0 0;
    line-height: 1.5;
}

.gd-hero-divider {
    display: none;
}

.gd-hero-text-content {
    margin-top: 5px;
}

.gd-hero-text {
    font-size: 16px;
    line-height: 1.9;
    color: #1f2937;
    text-align: justify;
    margin-bottom: 16px;
}

.gd-hero-text:last-of-type {
    margin-bottom: 0;
}

.gd-hero-text strong {
    color: #0a0e27;
    font-weight: 700;
}

.gd-hero-stats {
    display: flex;
    gap: 30px;
    margin: 20px 0;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #eef2f7;
}

.gd-hero-stat {
    text-align: center;
    flex: 1;
}

.gd-hero-stat-number {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: #fa9805;
}

.gd-hero-stat-label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #6b7280;
}

.gd-hero-buttons {
    display: flex;
    gap: 18px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.gd-hero-btn-primary,
.gd-hero-btn-secondary {
    display: inline-block;
    padding: 14px 38px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.gd-hero-btn-primary {
    background: #fa9805;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(250, 152, 5, 0.3);
}

.gd-hero-btn-primary:hover {
    background: #e08900;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(250, 152, 5, 0.4);
    color: #ffffff;
}

.gd-hero-btn-secondary {
    background: transparent;
    color: #0a0e27;
    border: 2px solid #0a0e27;
}

.gd-hero-btn-secondary:hover {
    background: #0a0e27;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.gd-hero-image-wrapper {
    width: 100%;
    height: auto;
}

.gd-hero-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #eef2f7;
}

.gd-hero-image-wrapper img:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

/* Tablet */
@media screen and (max-width: 992px) {
    .gd-hero-section {
        padding: 60px 30px;
    }
    .gd-hero-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    .gd-hero-content {
        order: 2;
    }
    .gd-hero-image {
        order: 1;
    }
    .gd-hero-title {
        font-size: 32px;
    }
    .gd-hero-subtitle {
        font-size: 20px;
    }
    .gd-hero-text {
        font-size: 15px;
    }
    .gd-hero-stats {
        gap: 20px;
    }
    .gd-hero-stat-number {
        font-size: 20px;
    }
    .gd-hero-image-wrapper img {
        max-width: 400px;
    }
}

/* Mobile */
@media screen and (max-width: 768px) {
    .gd-hero-section {
        padding: 50px 20px;
    }
    .gd-hero-title {
        font-size: 28px;
    }
    .gd-hero-subtitle {
        font-size: 18px;
    }
    .gd-hero-text {
        font-size: 14px;
    }
    .gd-hero-stats {
        flex-direction: column;
        gap: 12px;
        padding: 15px;
    }
    .gd-hero-stat {
        text-align: center;
    }
    .gd-hero-stat-number {
        font-size: 20px;
    }
    .gd-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .gd-hero-btn-primary,
    .gd-hero-btn-secondary {
        width: 100%;
        max-width: 350px;
        padding: 12px 30px;
        font-size: 15px;
    }
    .gd-hero-image-wrapper img {
        max-width: 100%;
    }
}
/* Section 2: Design Skills That Businesses Need - dae2eb Background */
.gd-skills-section {
    background: #dae2eb;
    padding: 80px 60px;
    position: relative;
}

.gd-skills-fluid {
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
}

.gd-skills-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px 60px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.gd-skills-wrapper:hover {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
}

.gd-skills-header {
    text-align: center;
    margin-bottom: 25px;
}

.gd-skills-badge {
    display: inline-block;
    background: rgba(250, 152, 5, 0.1);
    color: #fa9805;
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid rgba(250, 152, 5, 0.15);
    margin-bottom: 12px;
}

.gd-skills-title {
    font-size: 34px;
    font-weight: 800;
    color: #0a0e27;
    margin: 0;
    line-height: 1.2;
}

.gd-skills-divider {
    width: 60px;
    height: 4px;
    background: #fa9805;
    margin: 12px auto 0;
    border-radius: 2px;
}

.gd-skills-text {
    font-size: 16px;
    line-height: 1.9;
    color: #1f2937;
    text-align: justify;
    margin-bottom: 16px;
}

.gd-skills-text strong {
    color: #0a0e27;
    font-weight: 700;
}

.gd-skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 15px 0 25px;
}

.gd-skills-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #eef2f7;
    transition: all 0.3s ease;
}

.gd-skills-item:hover {
    border-color: #fa9805;
    background: #fffbf5;
    transform: translateX(3px);
}

.gd-skills-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.gd-skills-label {
    font-size: 15px;
    font-weight: 500;
    color: #1f2937;
}

.gd-skills-highlight {
    background: rgba(250, 152, 5, 0.05);
    padding: 20px 25px;
    border-radius: 14px;
    border-left: 4px solid #fa9805;
    margin: 20px 0;
}

.gd-skills-highlight h4 {
    font-size: 17px;
    font-weight: 700;
    color: #0a0e27;
    margin: 0 0 10px 0;
}

.gd-skills-highlight p {
    font-size: 15px;
    line-height: 1.8;
    color: #1f2937;
    margin: 0 0 10px 0;
}

.gd-skills-highlight p:last-child {
    margin-bottom: 0;
}

.gd-skills-highlight strong {
    color: #0a0e27;
}

.gd-skills-features {
    background: #f8f9fa;
    padding: 25px 30px;
    border-radius: 14px;
    border: 1px solid #eef2f7;
    margin: 20px 0;
}

.gd-skills-features h4 {
    font-size: 17px;
    font-weight: 700;
    color: #0a0e27;
    text-align: center;
    margin: 0 0 15px 0;
}

.gd-skills-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 20px;
}

.gd-skills-feature-item {
    font-size: 14px;
    line-height: 1.7;
    color: #1f2937;
    padding: 4px 0;
}

.gd-skills-outro {
    font-size: 16px;
    line-height: 1.9;
    color: #1f2937;
    text-align: justify;
    padding-top: 20px;
    border-top: 1px solid #eef2f7;
}

.gd-skills-outro strong {
    color: #0a0e27;
    font-weight: 700;
}

/* Tablet */
@media screen and (max-width: 992px) {
    .gd-skills-section {
        padding: 60px 30px;
    }
    .gd-skills-wrapper {
        padding: 40px 35px;
    }
    .gd-skills-title {
        font-size: 30px;
    }
    .gd-skills-text {
        font-size: 15px;
    }
    .gd-skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gd-skills-features-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile */
@media screen and (max-width: 768px) {
    .gd-skills-section {
        padding: 50px 20px;
    }
    .gd-skills-wrapper {
        padding: 30px 25px;
    }
    .gd-skills-title {
        font-size: 28px;
    }
    .gd-skills-text {
        font-size: 14px;
    }
    .gd-skills-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .gd-skills-item {
        padding: 10px 14px;
    }
    .gd-skills-label {
        font-size: 14px;
    }
    .gd-skills-highlight {
        padding: 16px 18px;
    }
    .gd-skills-highlight h4 {
        font-size: 16px;
    }
    .gd-skills-highlight p {
        font-size: 14px;
    }
    .gd-skills-features {
        padding: 18px 16px;
    }
    .gd-skills-features h4 {
        font-size: 16px;
    }
    .gd-skills-feature-item {
        font-size: 13px;
    }
    .gd-skills-outro {
        font-size: 14px;
    }
}

/* Small Mobile */
@media screen and (max-width: 480px) {
    .gd-skills-grid {
        grid-template-columns: 1fr;
    }
}
/* Section 3: Discover the World of Visual Design - White Background */
.gd-discover-section {
    background: #ffffff;
    padding: 80px 60px;
    position: relative;
}

.gd-discover-fluid {
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
}

.gd-discover-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.gd-discover-header {
    text-align: center;
    margin-bottom: 25px;
}

.gd-discover-badge {
    display: inline-block;
    background: rgba(250, 152, 5, 0.1);
    color: #fa9805;
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid rgba(250, 152, 5, 0.15);
    margin-bottom: 12px;
}

.gd-discover-title {
    font-size: 36px;
    font-weight: 800;
    color: #0a0e27;
    margin: 0;
    line-height: 1.2;
}

.gd-discover-subtitle {
    font-size: 20px;
    font-weight: 500;
    color: #4a5568;
    margin: 8px 0 0 0;
    line-height: 1.4;
}

.gd-discover-divider {
    width: 60px;
    height: 4px;
    background: #fa9805;
    margin: 12px auto 0;
    border-radius: 2px;
}

.gd-discover-text {
    font-size: 16px;
    line-height: 1.9;
    color: #1f2937;
    text-align: justify;
    margin-bottom: 16px;
}

.gd-discover-text strong {
    color: #0a0e27;
    font-weight: 700;
}

.gd-discover-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 15px 0;
}

.gd-discover-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 14px;
    border: 1px solid #eef2f7;
    transition: all 0.3s ease;
}

.gd-discover-item:hover {
    transform: translateY(-4px);
    border-color: #fa9805;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    background: #fffbf5;
}

.gd-discover-icon-wrapper {
    font-size: 32px;
    display: block;
    margin-bottom: 10px;
}

.gd-discover-item-title {
    font-size: 17px;
    font-weight: 700;
    color: #0a0e27;
    margin: 0 0 8px 0;
}

.gd-discover-item-text {
    font-size: 14px;
    line-height: 1.7;
    color: #4a5568;
    margin: 0;
    text-align: justify;
}

.gd-discover-features {
    background: rgba(250, 152, 5, 0.05);
    padding: 25px 30px;
    border-radius: 14px;
    border-left: 4px solid #fa9805;
    margin: 20px 0;
}

.gd-discover-features h4 {
    font-size: 17px;
    font-weight: 700;
    color: #0a0e27;
    margin: 0 0 15px 0;
}

.gd-discover-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 20px;
}

.gd-discover-feature-item {
    font-size: 14px;
    line-height: 1.7;
    color: #1f2937;
}

.gd-discover-outro {
    font-size: 16px;
    line-height: 1.9;
    color: #1f2937;
    text-align: justify;
    padding-top: 20px;
    border-top: 1px solid #eef2f7;
}

.gd-discover-outro strong {
    color: #0a0e27;
    font-weight: 700;
}

/* Tablet */
@media screen and (max-width: 992px) {
    .gd-discover-section {
        padding: 60px 30px;
    }
    .gd-discover-title {
        font-size: 32px;
    }
    .gd-discover-subtitle {
        font-size: 18px;
    }
    .gd-discover-text {
        font-size: 15px;
    }
    .gd-discover-grid {
        grid-template-columns: 1fr;
    }
    .gd-discover-features-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile */
@media screen and (max-width: 768px) {
    .gd-discover-section {
        padding: 50px 20px;
    }
    .gd-discover-title {
        font-size: 28px;
    }
    .gd-discover-subtitle {
        font-size: 17px;
    }
    .gd-discover-text {
        font-size: 14px;
    }
    .gd-discover-item {
        padding: 16px;
    }
    .gd-discover-item-title {
        font-size: 16px;
    }
    .gd-discover-item-text {
        font-size: 13px;
    }
    .gd-discover-features {
        padding: 18px 16px;
    }
    .gd-discover-features h4 {
        font-size: 16px;
    }
    .gd-discover-feature-item {
        font-size: 13px;
    }
    .gd-discover-outro {
        font-size: 14px;
    }
}
/* Section 4: What You'll Learn - dae2eb Background */
.gd-learn-section {
    background: #dae2eb;
    padding: 80px 60px;
    position: relative;
}

.gd-learn-fluid {
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
}

.gd-learn-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px 60px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.gd-learn-wrapper:hover {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
}

.gd-learn-header {
    text-align: center;
    margin-bottom: 25px;
}

.gd-learn-badge {
    display: inline-block;
    background: rgba(250, 152, 5, 0.1);
    color: #fa9805;
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid rgba(250, 152, 5, 0.15);
    margin-bottom: 12px;
}

.gd-learn-title {
    font-size: 34px;
    font-weight: 800;
    color: #0a0e27;
    margin: 0;
    line-height: 1.2;
}

.gd-learn-subtitle {
    font-size: 18px;
    font-weight: 500;
    color: #4a5568;
    margin: 8px 0 0 0;
    line-height: 1.4;
}

.gd-learn-divider {
    width: 60px;
    height: 4px;
    background: #fa9805;
    margin: 12px auto 0;
    border-radius: 2px;
}

.gd-learn-intro {
    font-size: 16px;
    line-height: 1.9;
    color: #1f2937;
    text-align: justify;
    margin-bottom: 16px;
}

.gd-learn-intro strong {
    color: #0a0e27;
    font-weight: 700;
}

.gd-learn-module {
    background: #f8f9fa;
    padding: 18px 22px;
    border-radius: 12px;
    margin-bottom: 14px;
    border: 1px solid #eef2f7;
    transition: all 0.3s ease;
}

.gd-learn-module:hover {
    border-color: #fa9805;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
}

.gd-learn-module-highlight {
    background: rgba(250, 152, 5, 0.05);
    border-left: 4px solid #fa9805;
    border-color: rgba(250, 152, 5, 0.15);
}

.gd-learn-module-highlight:hover {
    border-color: #fa9805;
    border-left-color: #fa9805;
}

.gd-learn-module-title {
    font-size: 17px;
    font-weight: 700;
    color: #0a0e27;
    margin: 0 0 4px 0;
}

.gd-learn-module-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #4a5568;
    margin: 0 0 10px 0;
}

.gd-learn-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.gd-learn-tag {
    background: #ffffff;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    color: #1f2937;
    border: 1px solid #eef2f7;
    transition: all 0.3s ease;
}

.gd-learn-tag:hover {
    border-color: #fa9805;
    background: #fffbf5;
    transform: translateY(-2px);
}

.gd-learn-outro-text {
    font-size: 16px;
    line-height: 1.9;
    color: #1f2937;
    text-align: justify;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eef2f7;
}

.gd-learn-outro-text strong {
    color: #0a0e27;
    font-weight: 700;
}

/* Tablet */
@media screen and (max-width: 992px) {
    .gd-learn-section {
        padding: 60px 30px;
    }
    .gd-learn-wrapper {
        padding: 40px 35px;
    }
    .gd-learn-title {
        font-size: 30px;
    }
    .gd-learn-subtitle {
        font-size: 17px;
    }
    .gd-learn-intro {
        font-size: 15px;
    }
    .gd-learn-module {
        padding: 16px 18px;
    }
    .gd-learn-module-title {
        font-size: 16px;
    }
    .gd-learn-tag {
        font-size: 11px;
        padding: 3px 10px;
    }
}

/* Mobile */
@media screen and (max-width: 768px) {
    .gd-learn-section {
        padding: 50px 20px;
    }
    .gd-learn-wrapper {
        padding: 30px 25px;
    }
    .gd-learn-title {
        font-size: 28px;
    }
    .gd-learn-subtitle {
        font-size: 16px;
    }
    .gd-learn-intro {
        font-size: 14px;
    }
    .gd-learn-module {
        padding: 14px 16px;
    }
    .gd-learn-module-title {
        font-size: 15px;
    }
    .gd-learn-module-desc {
        font-size: 13px;
    }
    .gd-learn-tag {
        font-size: 11px;
        padding: 3px 8px;
    }
    .gd-learn-outro-text {
        font-size: 14px;
    }
}
/* Section 5: Design Tools You'll Master - White Background */
.gd-tools-section {
    background: #ffffff;
    padding: 80px 60px;
    position: relative;
}

.gd-tools-fluid {
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
}

.gd-tools-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.gd-tools-header {
    text-align: center;
    margin-bottom: 25px;
}

.gd-tools-badge {
    display: inline-block;
    background: rgba(250, 152, 5, 0.1);
    color: #fa9805;
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid rgba(250, 152, 5, 0.15);
    margin-bottom: 12px;
}

.gd-tools-title {
    font-size: 36px;
    font-weight: 800;
    color: #0a0e27;
    margin: 0;
    line-height: 1.2;
}

.gd-tools-subtitle {
    font-size: 18px;
    font-weight: 500;
    color: #4a5568;
    margin: 8px 0 0 0;
    line-height: 1.4;
}

.gd-tools-divider {
    width: 60px;
    height: 4px;
    background: #fa9805;
    margin: 12px auto 0;
    border-radius: 2px;
}

.gd-tools-intro {
    font-size: 16px;
    line-height: 1.9;
    color: #1f2937;
    text-align: justify;
    margin-bottom: 16px;
}

.gd-tools-intro strong {
    color: #0a0e27;
    font-weight: 700;
}

.gd-tools-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 20px 0;
}

.gd-tools-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 14px;
    border: 1px solid #eef2f7;
    transition: all 0.3s ease;
}

.gd-tools-item:hover {
    transform: translateY(-4px);
    border-color: #fa9805;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    background: #fffbf5;
}

.gd-tools-icon-wrapper {
    font-size: 32px;
    display: block;
    margin-bottom: 10px;
}

.gd-tools-item-title {
    font-size: 17px;
    font-weight: 700;
    color: #0a0e27;
    margin: 0 0 6px 0;
}

.gd-tools-item-text {
    font-size: 14px;
    line-height: 1.6;
    color: #4a5568;
    margin: 0 0 10px 0;
}

.gd-tools-sub-items {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 12px;
}

.gd-tools-sub-item {
    font-size: 13px;
    color: #1f2937;
    position: relative;
    padding-left: 14px;
}

.gd-tools-sub-item::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #fa9805;
    font-weight: 700;
}

.gd-tools-skills {
    background: rgba(250, 152, 5, 0.05);
    padding: 25px 30px;
    border-radius: 14px;
    border-left: 4px solid #fa9805;
    margin: 20px 0;
}

.gd-tools-skills h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0a0e27;
    margin: 0 0 10px 0;
}

.gd-tools-skills p {
    font-size: 15px;
    line-height: 1.8;
    color: #1f2937;
    margin: 0 0 15px 0;
}

.gd-tools-skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 20px;
}

.gd-tools-skills-item {
    padding: 6px 12px;
    background: #ffffff;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #1f2937;
    border: 1px solid #eef2f7;
    text-align: center;
}

.gd-tools-highlight {
    background: #f8f9fa;
    padding: 20px 25px;
    border-radius: 12px;
    border: 1px solid #eef2f7;
    margin-top: 20px;
}

.gd-tools-highlight p {
    font-size: 15px;
    line-height: 1.8;
    color: #1f2937;
    margin: 0;
}

.gd-tools-highlight strong {
    color: #0a0e27;
}

/* Tablet */
@media screen and (max-width: 992px) {
    .gd-tools-section {
        padding: 60px 30px;
    }
    .gd-tools-title {
        font-size: 32px;
    }
    .gd-tools-subtitle {
        font-size: 17px;
    }
    .gd-tools-intro {
        font-size: 15px;
    }
    .gd-tools-grid {
        grid-template-columns: 1fr;
    }
    .gd-tools-skills-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile */
@media screen and (max-width: 768px) {
    .gd-tools-section {
        padding: 50px 20px;
    }
    .gd-tools-title {
        font-size: 28px;
    }
    .gd-tools-subtitle {
        font-size: 16px;
    }
    .gd-tools-intro {
        font-size: 14px;
    }
    .gd-tools-item {
        padding: 16px;
    }
    .gd-tools-item-title {
        font-size: 16px;
    }
    .gd-tools-item-text {
        font-size: 13px;
    }
    .gd-tools-skills {
        padding: 18px 16px;
    }
    .gd-tools-skills-item {
        font-size: 13px;
        padding: 4px 10px;
    }
    .gd-tools-highlight p {
        font-size: 14px;
    }
}
/* Section 6: Real-World Design Projects - dae2eb Background */
.gd-projects-section {
    background: #dae2eb;
    padding: 80px 60px;
    position: relative;
}

.gd-projects-fluid {
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
}

.gd-projects-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px 60px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.gd-projects-wrapper:hover {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
}

.gd-projects-header {
    text-align: center;
    margin-bottom: 25px;
}

.gd-projects-badge {
    display: inline-block;
    background: rgba(250, 152, 5, 0.1);
    color: #fa9805;
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid rgba(250, 152, 5, 0.15);
    margin-bottom: 12px;
}

.gd-projects-title {
    font-size: 34px;
    font-weight: 800;
    color: #0a0e27;
    margin: 0;
    line-height: 1.2;
}

.gd-projects-subtitle {
    font-size: 18px;
    font-weight: 500;
    color: #4a5568;
    margin: 8px 0 0 0;
    line-height: 1.4;
}

.gd-projects-divider {
    width: 60px;
    height: 4px;
    background: #fa9805;
    margin: 12px auto 0;
    border-radius: 2px;
}

.gd-projects-intro {
    font-size: 16px;
    line-height: 1.9;
    color: #1f2937;
    text-align: justify;
    margin-bottom: 16px;
}

.gd-projects-intro strong {
    color: #0a0e27;
    font-weight: 700;
}

.gd-projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 15px 0;
}

.gd-projects-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 14px;
    border: 1px solid #eef2f7;
    transition: all 0.3s ease;
}

.gd-projects-item:hover {
    transform: translateY(-4px);
    border-color: #fa9805;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    background: #fffbf5;
}

.gd-projects-item-highlight {
    background: rgba(250, 152, 5, 0.05);
    border-left: 4px solid #fa9805;
    border-color: rgba(250, 152, 5, 0.15);
}

.gd-projects-item-highlight:hover {
    border-color: #fa9805;
    border-left-color: #fa9805;
}

.gd-projects-icon-wrapper {
    font-size: 32px;
    display: block;
    margin-bottom: 10px;
}

.gd-projects-item-title {
    font-size: 17px;
    font-weight: 700;
    color: #0a0e27;
    margin: 0 0 6px 0;
}

.gd-projects-item-text {
    font-size: 14px;
    line-height: 1.7;
    color: #4a5568;
    margin: 0 0 10px 0;
}

.gd-projects-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.gd-projects-skill {
    background: #ffffff;
    padding: 3px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    color: #1f2937;
    border: 1px solid #eef2f7;
}

.gd-projects-skill:hover {
    border-color: #fa9805;
    background: #fffbf5;
}

.gd-projects-benefits {
    background: rgba(250, 152, 5, 0.05);
    padding: 25px 30px;
    border-radius: 14px;
    border-left: 4px solid #fa9805;
    margin: 20px 0;
}

.gd-projects-benefits h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0a0e27;
    margin: 0 0 15px 0;
}

.gd-projects-benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 20px;
    margin-bottom: 15px;
}

.gd-projects-benefit-item {
    font-size: 14px;
    line-height: 1.7;
    color: #1f2937;
}

.gd-projects-benefits p {
    font-size: 15px;
    line-height: 1.8;
    color: #1f2937;
    margin: 0;
}

.gd-projects-benefits strong {
    color: #0a0e27;
}

/* Tablet */
@media screen and (max-width: 992px) {
    .gd-projects-section {
        padding: 60px 30px;
    }
    .gd-projects-wrapper {
        padding: 40px 35px;
    }
    .gd-projects-title {
        font-size: 30px;
    }
    .gd-projects-subtitle {
        font-size: 17px;
    }
    .gd-projects-intro {
        font-size: 15px;
    }
    .gd-projects-grid {
        grid-template-columns: 1fr 1fr;
    }
    .gd-projects-benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile */
@media screen and (max-width: 768px) {
    .gd-projects-section {
        padding: 50px 20px;
    }
    .gd-projects-wrapper {
        padding: 30px 25px;
    }
    .gd-projects-title {
        font-size: 28px;
    }
    .gd-projects-subtitle {
        font-size: 16px;
    }
    .gd-projects-intro {
        font-size: 14px;
    }
    .gd-projects-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .gd-projects-item {
        padding: 16px;
    }
    .gd-projects-item-title {
        font-size: 16px;
    }
    .gd-projects-item-text {
        font-size: 13px;
    }
    .gd-projects-benefits {
        padding: 18px 16px;
    }
    .gd-projects-benefits h4 {
        font-size: 16px;
    }
    .gd-projects-benefit-item {
        font-size: 13px;
    }
    .gd-projects-benefits p {
        font-size: 14px;
    }
}
/* Section 7: Career Opportunities - White Background */
.gd-career-section {
    background: #ffffff;
    padding: 80px 60px;
    position: relative;
}

.gd-career-fluid {
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
}

.gd-career-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.gd-career-header {
    text-align: center;
    margin-bottom: 25px;
}

.gd-career-badge {
    display: inline-block;
    background: rgba(250, 152, 5, 0.1);
    color: #fa9805;
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid rgba(250, 152, 5, 0.15);
    margin-bottom: 12px;
}

.gd-career-title {
    font-size: 36px;
    font-weight: 800;
    color: #0a0e27;
    margin: 0;
    line-height: 1.2;
}

.gd-career-subtitle {
    font-size: 18px;
    font-weight: 500;
    color: #4a5568;
    margin: 8px 0 0 0;
    line-height: 1.4;
}

.gd-career-divider {
    width: 60px;
    height: 4px;
    background: #fa9805;
    margin: 12px auto 0;
    border-radius: 2px;
}

.gd-career-intro {
    font-size: 16px;
    line-height: 1.9;
    color: #1f2937;
    text-align: justify;
    margin-bottom: 16px;
}

.gd-career-intro strong {
    color: #0a0e27;
    font-weight: 700;
}

.gd-career-text {
    font-size: 16px;
    line-height: 1.9;
    color: #1f2937;
    text-align: justify;
    margin-bottom: 16px;
}

.gd-career-subtitle-two {
    font-size: 20px;
    font-weight: 700;
    color: #0a0e27;
    text-align: center;
    margin: 25px 0 18px;
    position: relative;
    padding-bottom: 12px;
}

.gd-career-subtitle-two::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #fa9805;
    border-radius: 2px;
}

.gd-career-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.gd-career-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #eef2f7;
    transition: all 0.3s ease;
}

.gd-career-item:hover {
    transform: translateY(-3px);
    border-color: #fa9805;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    background: #fffbf5;
}

.gd-career-icon {
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.gd-career-item-title {
    font-size: 15px;
    font-weight: 700;
    color: #0a0e27;
    margin: 0 0 4px 0;
}

.gd-career-item-text {
    font-size: 14px;
    line-height: 1.6;
    color: #4a5568;
    margin: 0;
}

.gd-career-industry-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.gd-career-industry-item {
    padding: 10px 16px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #eef2f7;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: #1f2937;
    transition: all 0.3s ease;
}

.gd-career-industry-item:hover {
    border-color: #fa9805;
    background: #fffbf5;
}

.gd-career-outro-wrapper {
    padding-top: 20px;
    border-top: 1px solid #eef2f7;
}

.gd-career-outro-wrapper h4 {
    font-size: 20px;
    font-weight: 700;
    color: #0a0e27;
    text-align: center;
    margin: 0 0 10px 0;
}

.gd-career-outro-wrapper p {
    font-size: 16px;
    line-height: 1.9;
    color: #1f2937;
    text-align: justify;
    margin-bottom: 0;
}

.gd-career-outro-wrapper strong {
    color: #0a0e27;
    font-weight: 700;
}

/* Tablet */
@media screen and (max-width: 992px) {
    .gd-career-section {
        padding: 60px 30px;
    }
    .gd-career-title {
        font-size: 32px;
    }
    .gd-career-subtitle {
        font-size: 17px;
    }
    .gd-career-intro {
        font-size: 15px;
    }
    .gd-career-grid {
        grid-template-columns: 1fr;
    }
    .gd-career-industry-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Mobile */
@media screen and (max-width: 768px) {
    .gd-career-section {
        padding: 50px 20px;
    }
    .gd-career-title {
        font-size: 28px;
    }
    .gd-career-subtitle {
        font-size: 16px;
    }
    .gd-career-intro {
        font-size: 14px;
    }
    .gd-career-text {
        font-size: 14px;
    }
    .gd-career-subtitle-two {
        font-size: 18px;
    }
    .gd-career-item {
        padding: 14px 14px;
    }
    .gd-career-item-title {
        font-size: 14px;
    }
    .gd-career-item-text {
        font-size: 13px;
    }
    .gd-career-industry-grid {
        grid-template-columns: 1fr 1fr;
    }
    .gd-career-industry-item {
        font-size: 13px;
        padding: 8px 12px;
    }
    .gd-career-outro-wrapper h4 {
        font-size: 18px;
    }
    .gd-career-outro-wrapper p {
        font-size: 14px;
    }
}

/* Small Mobile */
@media screen and (max-width: 480px) {
    .gd-career-industry-grid {
        grid-template-columns: 1fr;
    }
}
/* Section 8: Who Can Join Our Graphic Design Course? - dae2eb Background */
.gd-who-section {
    background: #dae2eb;
    padding: 80px 60px;
    position: relative;
}

.gd-who-fluid {
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
}

.gd-who-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px 60px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.gd-who-wrapper:hover {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
}

.gd-who-header {
    text-align: center;
    margin-bottom: 25px;
}

.gd-who-badge {
    display: inline-block;
    background: rgba(250, 152, 5, 0.1);
    color: #fa9805;
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid rgba(250, 152, 5, 0.15);
    margin-bottom: 12px;
}

.gd-who-title {
    font-size: 34px;
    font-weight: 800;
    color: #0a0e27;
    margin: 0;
    line-height: 1.2;
}

.gd-who-subtitle {
    font-size: 18px;
    font-weight: 500;
    color: #4a5568;
    margin: 8px 0 0 0;
    line-height: 1.4;
}

.gd-who-divider {
    width: 60px;
    height: 4px;
    background: #fa9805;
    margin: 12px auto 0;
    border-radius: 2px;
}

.gd-who-intro {
    font-size: 16px;
    line-height: 1.9;
    color: #1f2937;
    text-align: justify;
    margin-bottom: 16px;
}

.gd-who-intro strong {
    color: #0a0e27;
    font-weight: 700;
}

.gd-who-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 15px 0;
}

.gd-who-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 14px;
    border: 1px solid #eef2f7;
    transition: all 0.3s ease;
}

.gd-who-item:hover {
    transform: translateY(-4px);
    border-color: #fa9805;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    background: #fffbf5;
}

.gd-who-icon-wrapper {
    font-size: 32px;
    display: block;
    margin-bottom: 10px;
}

.gd-who-item-title {
    font-size: 17px;
    font-weight: 700;
    color: #0a0e27;
    margin: 0 0 6px 0;
}

.gd-who-item-text {
    font-size: 14px;
    line-height: 1.7;
    color: #4a5568;
    margin: 0;
    text-align: justify;
}

/* Tablet */
@media screen and (max-width: 992px) {
    .gd-who-section {
        padding: 60px 30px;
    }
    .gd-who-wrapper {
        padding: 40px 35px;
    }
    .gd-who-title {
        font-size: 30px;
    }
    .gd-who-subtitle {
        font-size: 17px;
    }
    .gd-who-intro {
        font-size: 15px;
    }
    .gd-who-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile */
@media screen and (max-width: 768px) {
    .gd-who-section {
        padding: 50px 20px;
    }
    .gd-who-wrapper {
        padding: 30px 25px;
    }
    .gd-who-title {
        font-size: 28px;
    }
    .gd-who-subtitle {
        font-size: 16px;
    }
    .gd-who-intro {
        font-size: 14px;
    }
    .gd-who-item {
        padding: 16px;
    }
    .gd-who-item-title {
        font-size: 16px;
    }
    .gd-who-item-text {
        font-size: 13px;
    }
}
/* Section 10: Call to Action - dae2eb Background */
.gd-cta-section {
    background: #dae2eb;
    padding: 80px 60px;
    position: relative;
}

.gd-cta-fluid {
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
}

.gd-cta-wrapper {
    max-width: 950px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px 60px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.gd-cta-wrapper:hover {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
}

.gd-cta-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #fa9805, #fcd34d);
    border-radius: 20px 0 0 20px;
}

.gd-cta-header {
    text-align: center;
    margin-bottom: 25px;
}

.gd-cta-badge {
    display: inline-block;
    background: rgba(250, 152, 5, 0.1);
    color: #fa9805;
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    border: 1px solid rgba(250, 152, 5, 0.15);
    margin-bottom: 12px;
}

.gd-cta-title {
    font-size: 34px;
    font-weight: 800;
    color: #0a0e27;
    margin: 0;
    line-height: 1.2;
}

.gd-cta-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #fa9805, #fcd34d);
    margin: 12px auto 0;
    border-radius: 2px;
}

.gd-cta-text {
    font-size: 16px;
    line-height: 1.9;
    color: #1f2937;
    text-align: center;
    margin-bottom: 16px;
}

.gd-cta-text strong {
    color: #0a0e27;
    font-weight: 700;
}

.gd-cta-highlight {
    background: rgba(250, 152, 5, 0.05);
    padding: 20px 25px;
    border-radius: 14px;
    border-left: 4px solid #fa9805;
    margin: 20px 0;
    text-align: center;
}

.gd-cta-highlight p {
    font-size: 16px;
    line-height: 1.8;
    color: #1f2937;
    margin: 0;
}

.gd-cta-highlight strong {
    color: #0a0e27;
}

.gd-cta-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 30px;
    margin: 20px 0 25px;
}

.gd-cta-feature-item {
    font-size: 15px;
    font-weight: 500;
    color: #1f2937;
}

.gd-cta-buttons {
    display: flex;
    gap: 18px;
    margin-top: 5px;
    flex-wrap: wrap;
    justify-content: center;
}

.gd-cta-btn-primary,
.gd-cta-btn-secondary {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.gd-cta-btn-primary {
    background: linear-gradient(135deg, #fa9805, #e08900);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(250, 152, 5, 0.35);
}

.gd-cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(250, 152, 5, 0.5);
    color: #ffffff;
}

.gd-cta-btn-secondary {
    background: transparent;
    color: #0a0e27;
    border: 2px solid #0a0e27;
}

.gd-cta-btn-secondary:hover {
    background: #0a0e27;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Tablet */
@media screen and (max-width: 992px) {
    .gd-cta-section {
        padding: 60px 30px;
    }
    .gd-cta-wrapper {
        padding: 40px 35px;
    }
    .gd-cta-title {
        font-size: 30px;
    }
    .gd-cta-text {
        font-size: 15px;
    }
    .gd-cta-highlight {
        padding: 16px 20px;
    }
    .gd-cta-highlight p {
        font-size: 15px;
    }
    .gd-cta-features {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

/* Mobile */
@media screen and (max-width: 768px) {
    .gd-cta-section {
        padding: 50px 20px;
    }
    .gd-cta-wrapper {
        padding: 30px 25px;
    }
    .gd-cta-wrapper::before {
        width: 4px;
    }
    .gd-cta-title {
        font-size: 26px;
    }
    .gd-cta-text {
        font-size: 14px;
    }
    .gd-cta-highlight {
        padding: 16px 18px;
    }
    .gd-cta-highlight p {
        font-size: 14px;
    }
    .gd-cta-features {
        grid-template-columns: 1fr;
        gap: 6px;
    }
    .gd-cta-feature-item {
        font-size: 14px;
    }
    .gd-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .gd-cta-btn-primary,
    .gd-cta-btn-secondary {
        width: 100%;
        max-width: 350px;
        padding: 12px 30px;
        font-size: 15px;
    }
}

/* Small Mobile */
@media screen and (max-width: 480px) {
    .gd-cta-wrapper {
        padding: 25px 18px;
    }
    .gd-cta-title {
        font-size: 22px;
    }
    .gd-cta-feature-item {
        font-size: 13px;
    }
    .gd-cta-highlight {
        padding: 14px 16px;
    }
    .gd-cta-highlight p {
        font-size: 13px;
    }
}

/* FAQ Section - White Background with Smooth Animations */
.faq-section {
    background: #ffffff;
    padding: 40px 60px;
    position: relative;
}

.faq-fluid {
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-title {
    font-size: 38px;
    font-weight: 800;
    color: #0a0e27;
    position: relative;
    display: inline-block;
    margin: 0;
    letter-spacing: 1px;
}

.faq-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #fa9805;
    border-radius: 2px;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 15px;
    border: 1px solid #eef2f7;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #fa9805;
}

.faq-item.active {
    border-color: #fa9805;
    box-shadow: 0 4px 20px rgba(250, 152, 5, 0.1);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 17px;
    font-weight: 600;
    color: #0a0e27;
    text-align: left;
    transition: all 0.3s ease;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.faq-question span {
    flex: 1;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.faq-item.active .faq-question span {
    color: #fa9805;
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    color: #fa9805;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    flex-shrink: 0;
    font-style: normal;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border-radius: 50%;
    display: inline-block;
}

.faq-item.active .faq-icon {
    transform: rotate(135deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.4s ease,
                padding 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 600px;
    opacity: 1;
}

.faq-answer-inner {
    padding: 0 25px 0 25px;
    transform: translateY(-10px);
    transition: transform 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer-inner {
    padding: 0 25px 25px 25px;
    transform: translateY(0);
}

.faq-answer-inner p {
    font-size: 16px;
    line-height: 1.8;
    text-align: justify;
    color: #4a5568;
    margin: 0;
    animation: fadeInContent 0.5s ease;
}

.faq-answer-inner strong {
    color: #0a0e27;
    font-weight: 700;
}

@keyframes fadeInContent {
    0% {
        opacity: 0;
        transform: translateY(8px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tablet Devices */
@media screen and (max-width: 992px) {
    .faq-section {
        padding: 60px 30px;
    }
    
    .faq-title {
        font-size: 32px;
    }
    
    .faq-question {
        font-size: 16px;
        padding: 18px 20px;
    }
    
    .faq-item.active .faq-answer-inner {
        padding: 0 20px 20px 20px;
    }
    
    .faq-answer-inner p {
        font-size: 15px;
        line-height: 1.7;
    }
}

/* Mobile Devices */
@media screen and (max-width: 768px) {
    .faq-section {
        padding: 50px 20px;
    }
    
    .faq-title {
        font-size: 28px;
    }
    
    .faq-title::after {
        width: 60px;
        bottom: -8px;
    }
    
    .faq-header {
        margin-bottom: 30px;
    }
    
    .faq-question {
        font-size: 15px;
        padding: 16px 18px;
        gap: 12px;
    }
    
    .faq-icon {
        font-size: 20px;
        width: 32px;
        height: 32px;
        line-height: 32px;
    }
    
    .faq-item.active .faq-answer-inner {
        padding: 0 18px 18px 18px;
    }
    
    .faq-answer-inner p {
        font-size: 14px;
        line-height: 1.7;
    }
}

/* Small Mobile Devices */
@media screen and (max-width: 480px) {
    .faq-section {
        padding: 40px 15px;
    }
    
    .faq-title {
        font-size: 24px;
    }
    
    .faq-title::after {
        width: 50px;
        height: 3px;
        bottom: -6px;
    }
    
    .faq-question {
        font-size: 14px;
        padding: 14px 15px;
        gap: 10px;
    }
    
    .faq-icon {
        font-size: 18px;
        width: 28px;
        height: 28px;
        line-height: 28px;
    }
    
    .faq-item.active .faq-answer-inner {
        padding: 0 15px 15px 15px;
    }
    
    .faq-answer-inner p {
        font-size: 13px;
        line-height: 1.6;
    }
}

/* Extra Small Devices */
@media screen and (max-width: 360px) {
    .faq-question {
        font-size: 13px;
        padding: 12px 12px;
    }
    
    .faq-icon {
        font-size: 16px;
        width: 24px;
        height: 24px;
        line-height: 24px;
    }
    
    .faq-item.active .faq-answer-inner {
        padding: 0 12px 12px 12px;
    }
    
    .faq-answer-inner p {
        font-size: 12px;
        line-height: 1.6;
    }
}

