* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}
ul{
    text-decoration: none;
}

/* 基本設定 */
#container {
    width: 100%;
    min-width: 100vh;
    padding: 0;
    margin: 0;
}

#main_column.colnum1 {
    width: 100%;
    margin: 0;
}

#main_column nav, #main-content nav {
    display: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    background: none;
    width: 100%;
    float: none;
}

/* Header */
.header {
    background: linear-gradient(135deg, #162789 0%, #1a2f9a 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.header-content {
    position: relative;
    z-index: 1;
}

.logo {
    font-family: Impact, 'Arial Black', sans-serif;
    font-size: 1.8rem;
    font-weight: normal;
    margin-bottom: 25px;
    opacity: 0.95;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.header h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.header-subtitle {
    font-size: 1.4rem;
    margin-bottom: 25px;
    opacity: 0.95;
    font-weight: 500;
}

/* Header Info追加スタイル */
.header-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    /*background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;*/
}

.info-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.info-icon {
    font-size: 1.5rem;
    min-width: 1.5rem;
}

.info-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
}

.info-label {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
    text-align: center;
    width: 100%;
}

.info-value {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    width: 100%;
    line-height: 1.5;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #ffffff 0%, #f0f0f0 100%);
    color: #162789;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}
.prize-info::before,.prize-info::after{
    content: '';
    display: inline-block;
    width: 40px;
    height: 100px;
    vertical-align: middle;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.prize-info::before{
    background-image: url(https://shinanotent.shop/upload/save_image/custompage/idea_2025/left.png);
}
.prize-info::after{
    background-image: url(https://shinanotent.shop/upload/save_image/custompage/idea_2025/right.png);
}
.deadline-text{
    margin-top: 1rem;
    text-align: center;
}
/* Main Content */
.main-content {
    padding: 100px 0;
}

.section {
    margin-bottom: 100px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    overflow: hidden;
    position: relative;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #162789, #1a2f9a, #162789);
    background-size: 200% 100%;
    animation: gradientMove 3s ease-in-out infinite;
}

@keyframes gradientMove {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.section-header {
    background: linear-gradient(135deg, #162789 0%, #1a2f9a 100%);
    color: white;
    padding: 40px;
    text-align: center;
    position: relative;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 10px solid #162789;
}

#main_column .section-header h2, #main-content .section-header h2 {
    font-size: 2.2rem;
    margin: 0 0 10px;
    border: none;
    background: none;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.section-content {
    padding: 50px;
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f0ff 100%);
    border: 2px solid #162789;
    border-radius: 1rem;
    padding: 40px;
    margin-bottom: 40px;
    text-align: center;
}

.highlight-box h3 {
    font-size: 1.8rem;
    color: #162789;
    margin-bottom: 20px;
}

.highlight-text {
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.8;
    color: #2c3e50;
}

/* H4見出しデザイン */
h4 {
    font-size: 1.4rem;
    color: #162789;
    margin: 3.5rem 0 2.5rem;
    padding: 1rem 0 1rem 25px;
    border-left: 6px solid #162789;
    background: linear-gradient(90deg, rgba(22, 39, 137, 0.1) 0%, rgba(22, 39, 137, 0.02) 100%);
    position: relative;
    border-radius: 0 1rem 1rem 0;
    box-shadow: 0 4px 1rem rgba(22, 39, 137, 0.1);
}

/* About Section - 1列レイアウト */
.about-content {
    max-width: 100%;
}

.about-content h3 {
    font-size: 1.5rem;
    color: #162789;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.about-message {
    font-size: 1.3rem;
    font-weight: 600;
    color: #162789;
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border-radius: 1rem;
    border: 2px solid #ffd700;
    box-shadow: 0 4px 1rem rgba(255, 215, 0, 0.2);
}

.message-icon {
    font-size: 1.5rem;
    margin-right: 10px;
}
/* ナビ */
.navi-section {
    padding: 1rem 0;
    margin-bottom: 2rem;
    position: relative;
    transition: all 0.3s ease;
    z-index: 100;
}

.navi-section.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 2px solid #162789;
    box-shadow: 0 4px 20px rgba(22, 39, 137, 0.15);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.navi-list {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navi-list li {
    margin: 0;
    min-width: 8rem;
    text-align: center;
}

.navi-list li a {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: #162789;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.navi-list li a:hover {
    background: linear-gradient(135deg, #162789 0%, #1a2f9a 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(22, 39, 137, 0.3);
}

.navi-list li a.active {
    background: linear-gradient(135deg, #162789 0%, #1a2f9a 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(22, 39, 137, 0.3);
}

/* アイコングリッド */
.icon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 40px 0;
}

.icon-item {
    text-align: center;
    padding: 3rem 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

#category-tent,
#category-furniture,
#category-panel,
#category-goods,
#category-tool,
#category-other{
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

#category-tent{
    background-image: none;
}

#category-furniture{
    background-image: none;
}

#category-panel{
    background-image: none;
}

#category-goods{
    background-image: none;
}

#category-tool{
    background-image: none;
}

#category-other{
    background-image: none;
}

.icon-title {
    font-weight: 700;
    color: #162789;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.icon-desc {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

/* Inspiration Section */
.inspiration-section {
    margin-top: 50px;
}

.inspiration-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.inspiration-item {
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
    border-radius: 1rem;
    transition: all 0.3s ease;
    text-align: center; 
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.inspiration-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.inspiration-item h5 {
    font-size: 1.2rem;
    color: #162789;
    font-weight: 600;
}

.inspiration-item p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

.inspiration-item h5,.inspiration-item p{
    margin: 0;
}
/* Rules Section */
.rules-list {
    list-style: none;
}

.rules-list li {
    padding: 25px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 6px solid #162789;
    border-radius: 0 1rem 1rem 0;
    font-size: 1.1rem;
    box-shadow: 0 4px 1rem rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.rules-list li strong {
    color: #162789;
    font-weight: 600;
}

/* 注意事項セクション */
.notice-box {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: 3px solid #ffd700;
    border-radius: 20px;
    padding: 40px;
    margin-top: 40px;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.notice-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.notice-box-content {
    position: relative;
    z-index: 1;
}

.notice-box h4 {
    color: #856404;
    border-left-color: #856404;
    background: linear-gradient(90deg, rgba(133, 100, 4, 0.15) 0%, rgba(133, 100, 4, 0.03) 100%);
    margin: 0 0 25px;
    font-weight: 600;
}

.notice-list {
    list-style: none;
}

.notice-list li {
    padding: 0;
    padding-left: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    color: #856404;
    font-weight: 500;
    line-height: 1.7;
    font-size: 1rem;
}

.notice-list li::before {
    content: '⚠️';
    position: absolute;
    left: 0;
    top: 0;
    width: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
}

/* Prize Section */
.prize-card {
    background: linear-gradient(135deg, #162789 0%, #1a2f9a 100%);
    color: white;
    padding: 50px;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(22, 39, 137, 0.3);
}

.prize-card h3 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.prize-amount {
    font-size: 4rem;
    font-weight: bold;
    margin: 30px 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.prize-card p {
    font-size: 1.1rem;
    margin-bottom: 10px;
}
.prize-dl{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}
.prize-list{
    display: flex;
    gap: 0;
}
.prize-dl dt,.prize-dl dd{
    padding: 1rem 2rem;
    font-size: large;
    font-weight: bold;
}
.prize-dl .rank-top dt,.prize-dl .rank-top dd{
    font-size: 2rem;
}
.prize-dl .rank-second dt,.prize-dl .rank-second dd{
    font-size: 1.5rem;
}
.prize-dl dt{
    background-color: #162789;
    color: #fff;
    width: 30rem;
    text-align: center;
}
.prize-dl dd{
    width: 100%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* よくある質問セクション */
.faq-list {
    list-style: none;
}

.faq-item {
    margin-bottom: 25px;
    border: 3px solid #e9ecef;
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 1rem rgba(0,0,0,0.08);
}

.faq-item:hover {
    border-color: #162789;
    box-shadow: 0 8px 25px rgba(22, 39, 137, 0.15);
    transform: translateY(-2px);
}

.faq-question {
    background: linear-gradient(135deg, #162789 0%, #1a2f9a 100%);
    color: white;
    padding: 25px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1.1rem;
}

.faq-question:hover {
    background: linear-gradient(135deg, #1a2f9a 0%, #2040b0 100%);
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.8rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.faq-question.active::after {
    content: '−';
    transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: white;
}

.faq-answer.show {
    padding: 30px;
    max-height: 400px;
}

.faq-answer p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
}

/* Application Section */
.application-cta {
    text-align: center;
    margin-bottom: 60px;
}

.application-text {
    margin-bottom: 50px;
}

.application-text h3 {
    font-size: 2rem;
    color: #162789;
    margin-bottom: 25px;
    font-weight: 600;
}

.application-text p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

.application-button-container {
    margin: 50px 0;
}

.application-button-container a {
    color: #fff;
    text-decoration: none;
}

.application-button {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, #162789 0%, #1a2f9a 100%);
    color: white;
    padding: 30px 60px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 1.3rem;
    transition: all 0.4s ease;
    box-shadow: 0 10px 35px rgba(22, 39, 137, 0.4);
    position: relative;
    overflow: hidden;
}

.application-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.application-button:hover::before {
    left: 100%;
}

.application-button:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 1rem 45px rgba(22, 39, 137, 0.5);
}

.button-icon {
    font-size: 1.8rem;
}

.button-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.button-text strong {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.button-text small {
    font-size: 1rem;
    opacity: 0.8;
}

.application-steps {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3rem 2rem;
    border-radius: 1rem;
    margin-top: 4rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.application-steps h4 {
    text-align: center;
    font-size: 1.8rem;
    color: #162789;
    margin-bottom: 40px;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    box-shadow: none;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.step-item {
    text-align: center;
    position: relative;
    padding: 25px;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.step-item:not(:last-child)::after {
content: '→';
    position: absolute;
    top: 0;
    right: -25px;
    font-size: 2rem;
    color: #162789;
    font-weight: bold;
    z-index: 1;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #162789 0%, #1a2f9a 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
    box-shadow: 0 6px 20px rgba(22, 39, 137, 0.3);
}

.step-content h5 {
    font-size: 1.3rem;
    color: #162789;
    margin-bottom: 1rem;
    font-weight: 600;
}

.step-content p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* Contact Section */
.contact-content{
    text-align: center;
    margin-bottom: 3rem;
}
.contact-content h3{
    margin-bottom: 1rem;
}
.contact-content ul{
    margin-bottom: 2rem;
}
.contact-content strong{
    margin-right: 0.5rem;
}
.contact-content a{
    color: #fff;
    text-decoration: underline;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
    position: relative;
}

.footer-links {
    margin-bottom: 30px;
}

.footer-links a{
    color: white;
    text-decoration: none;
    margin: 0 25px;
    opacity: 0.9;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    font-weight: 500;
}

.footer-links a:hover {
    opacity: 1;
    color: #ffd700;
    transform: translateY(-2px);
}

.footer p {
    font-size: 1rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 960px) {
    div#main-content{
        margin: 0 auto;
    }
    .header h1 {
        font-size: 3rem;
    }
    
    .icon-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .inspiration-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .step-item:not(:last-child)::after {
        content: '↓';
        top: auto;
        bottom: -20px;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        height: 20px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .header {
        padding: 60px 0;
    }
    
    .header h1 {
        font-size: 2.5rem;
    }
    
    .header-subtitle {
        font-size: 1.2rem;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    /* Header Info レスポンシブ */
    .header-info {
        gap: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .info-item {
        padding: 0.8rem 1.2rem;
        gap: 0.6rem;
    }
    
    .info-icon {
        font-size: 1.3rem;
    }
    
    .main-content {
        padding: 60px 0;
    }
    
    .section {
        margin-bottom: 60px;
    }
    
    .section-content {
        padding: 30px 25px;
    }
    
    .icon-grid {
        gap: 20px;
    }
    
    .contact-details {
        gap: 20px;
    }
    
    .contact-item {
        flex-direction: column;
        gap: 1rem;
        padding: 20px;
    }
    
    .application-button {
        padding: 25px 45px;
        font-size: 1.2rem;
    }
    
    h4 {
        font-size: 1.3rem;
        margin: 30px 0 20px;
        padding: 12px 0 12px 20px;
    }
    
    .highlight-box {
        padding: 30px 25px;
    }
    
    .about-message {
        font-size: 1.2rem;
        padding: 25px;
    }
    
    .notice-box {
        padding: 30px 25px;
        gap: 30px;
    }
    
    .notice-list li {
        padding-left: 2rem;
        font-size: 0.95rem;
    }
    
    .application-steps {
        padding: 40px 25px;
    }
    .prize-list{
        flex-direction: column;
    }
    .prize-list dt,.prize-list dd{
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 428px) {
    .header h1 {
        font-size: 2rem;
    }
    
    .header-subtitle {
        font-size: 1.1rem;
    }
    
    .logo {
        font-size: 1.3rem;
        letter-spacing: 2px;
    }
    
    /* Header Info モバイル対応 */
    .header-info {
        gap: 1rem;
        margin: 1rem 0;
    }
    
    .info-item {
        padding: 0.6rem 1rem;
        gap: 0.5rem;
        flex: 1;
        justify-content: center;
        min-width: 140px;
    }
    
    .info-text {
        align-items: center;
        text-align: center;
    }
    
    .cta-button {
        padding: 1rem 35px;
        font-size: 1.1rem;
    }
    
    .prize-amount {
        font-size: 2.5rem;
    }
    
    .icon-grid {
        grid-template-columns: 1fr;
    }

    .icon-item {
        padding: 25px 1rem;
    }
    
    .icon-item .icon {
        font-size: 2.5rem;
    }
    
    h4 {
        font-size: 1.2rem;
        padding: 10px 0 10px 1rem;
    }
    
    .about-message {
        font-size: 1.1rem;
        padding: 20px;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }
    
    .faq-answer.show {
        padding: 25px;
    }
    
    .notice-box {
        padding: 25px 20px;
    }
    
    .notice-list li {
        font-size: 0.9rem;
    }
    
    .application-button {
        padding: 20px 35px;
        font-size: 1.1rem;
        gap: 1rem;
    }
    
    .button-text strong {
        font-size: 1.2rem;
    }
    
    .button-text small {
        font-size: 0.9rem;
    }
    
    .contact-item {
        padding: 20px 1rem;
    }
    
    .contact-note {
        padding: 25px 20px;
    }
    
    .highlight-box {
        padding: 25px 20px;
    }
    
    .inspiration-item {
        padding: 20px;
    }
    
    .application-steps {
        padding: 30px 20px;
    }
}