/* General Reset for Body Content */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
}

/* Content Container */
.container {
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Heading Styles */
.container h1 {
    font-size: 36px;
    color: #222;
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 2px solid #d4af37;
    padding-bottom: 10px;
}

/* Post Details */
.post-details {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    text-align: center;
}

/* Paragraph Text */
.container p {
    font-size: 18px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Tips List */
.tips-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.tips-list li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}

.tips-list li:before {
    content: "✔";
    color: #d4af37;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 20px;
    line-height: 1;
}

.tips-list strong {
    color: #d4af37;
}

/* Share Experience Link */
.share-experience a {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #d4af37;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.share-experience a:hover {
    background-color: #b38c2b;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .container {
        margin: 20px;
        padding: 15px;
    }

    .container h1 {
        font-size: 28px;
    }

    .container p {
        font-size: 16px;
    }

    .tips-list li {
        font-size: 16px;
    }

    .share-experience a {
        padding: 8px 15px;
        font-size: 14px;
    }
}
