/* Basic Reset & Body Styles */
body {
    margin: 0;
    font-family: 'Nunito', sans-serif;
    background-color: #EBF8FF; /* Light blue, similar to pin background */
    color: #003366; /* Dark blue for text, similar to pin */
    line-height: 1.6;
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Align to top for longer content */
    min-height: 100vh;
    padding: 20px;
    box-sizing: border-box;
}

.container {
    background-color: #fff;
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 750px; /* Slightly wider for guide content */
    width: 100%;
    text-align: center;
    margin-top: 20px; /* Add some margin from top */
    margin-bottom: 20px;
}

header {
    margin-bottom: 25px;
    position: relative;
    padding-top: 40px;
}

h1 {
    font-size: 2.2em;
    color: #FF6F00; /* Orange color from pin */
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.3;
}

.emoji-star {
    font-size: 0.8em; /* Star emoji smaller than text */
    vertical-align: super;
}

p.intro {
    font-size: 1.15em;
    margin-bottom: 30px;
    color: #1E3A8A;
}

/* Guide Section Styles */
.guide-section {
    margin-bottom: 30px;
    text-align: left; /* Align guide items text to the left */
}

.guide-item {
    display: flex;
    align-items: center; /* Vertically align icon and text */
    margin-bottom: 25px;
    background-color: #F0F9FF; /* Very light blue accent for item background */
    padding: 15px;
    border-radius: 8px;
    border-left: 5px solid #F59E0B; /* Yellow/orange accent border */
}

.guide-icon {
    width: 60px;  /* Adjust based on your icon sizes */
    height: auto;
    margin-right: 20px;
    flex-shrink: 0; /* Prevent icon from shrinking */
}

.guide-item h2 {
    font-size: 1.3em;
    color: #003366; /* Darker blue for subheadings */
    margin-top: 0;
    margin-bottom: 5px;
    font-weight: 700;
}

.guide-item p {
    font-size: 1em;
    color: #374151; /* Softer text color for description */
    margin-bottom: 0;
}


p.transition-text {
    font-size: 1.1em;
    margin-top: 30px;
    margin-bottom: 25px;
    font-style: italic;
    color: #4A5568;
}

/* CTA Section Styles */
.cta-section {
    background-color: #FFFBEB; /* Very light yellow, subtle */
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
}

p.cta-lead {
    font-size: 1.2em;
    font-weight: bold;
    color: #003366;
    margin-bottom: 20px;
    line-height: 1.4;
}

.cta-button {
    display: inline-block;
    background-color: #FF6F00;
    color: #ffffff;
    padding: 15px 35px; /* Slightly larger padding */
    font-size: 1.25em; /* Slightly larger font */
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.cta-button:hover {
    background-color: #E65100;
    transform: translateY(-2px);
}

/* Footer & Hashtags */
footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #E5E7EB; /* Light separator line */
}

p.hashtags {
    font-size: 0.9em;
    color: #6B7280; /* Grey for hashtags */
    word-spacing: 5px; /* Add some space between hashtags */
    line-height: 1.5;
}


/* --- Image Icon Styles --- */
.header-icon {
    position: absolute;
    width: 50px; /* Adjust as needed */
    height: auto;
}

.icon-sun {
    top: -15px;
    left: 15px;
}

.icon-butterfly {
    top: 0px;
    right: 15px;
    width: 45px;
}

/* Responsive adjustments */
@media (max-width: 700px) {
    .container {
        padding: 20px 25px;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    h1 {
        font-size: 1.9em;
    }
    .guide-item {
        flex-direction: column; /* Stack icon and text on small screens */
        align-items: center;
        text-align: center;
    }
    .guide-icon {
        margin-right: 0;
        margin-bottom: 10px;
        width: 50px;
    }
    .guide-item h2 {
        font-size: 1.2em;
    }
    .guide-item p {
        font-size: 0.95em;
    }
    p.cta-lead {
        font-size: 1.1em;
    }
    .cta-button {
        font-size: 1.1em;
        padding: 12px 25px;
    }
    .header-icon { width: 40px; }
    .icon-sun { top: -10px; left: 10px; }
    .icon-butterfly { top: -5px; right: 10px; width: 35px;}
}

@media (max-width: 480px) {
    h1 { font-size: 1.6em; }
    p.intro { font-size: 1em; }
    .guide-icon { width: 45px; }
    p.hashtags { font-size: 0.8em; word-spacing: 3px;}
}