#head-content {
    min-height: 140px;
}

main {
    width: var(--all-width);
    margin: 0 auto 50px;
    display: block;
}

.static-wrap {
    background-color: #fff;
    border-radius: 6px;
    padding: 30px;
}

.static-wrap .page-title {
    font-size: 22px;
    font-weight: normal;
    color: #fff;
    background-color: #db3030;
    border-radius: 6px;
    padding: 10px 15px 10px 45px;
    position: relative;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.static-wrap .page-title::before {
    content: '';
    position: absolute;
    background-image: url(../images/love.png);
    background-repeat: no-repeat;
    background-size: 20px 20px;
    background-position: center;
    width: 35px;
    height: 100%;
    left: 5px;
    top: 0;
}

.static-wrap .page-title .share-bar {
    display: flex;
    align-items: center;
    gap: 8px;
}

.static-wrap .page-title .share-bar span {
    font-size: 13px;
    color: #ffe0e0;
}

.share-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    transition: .3s;
    font-size: 14px;
    color: #fff;
}

.share-btn.fb {
    background-color: #1877f2;
}

.share-btn.tw {
    background-color: #1da1f2;
}

.share-btn.rd {
    background-color: #ff4500;
}

.share-btn.wa {
    background-color: #25d366;
}

.share-btn.cp {
    background-color: #7b4f25;
}

.share-btn:hover {
    transform: scale(1.15);
    opacity: .9;
}

.static-wrap h2 {
    font-size: 16px;
    color: #7b4f25;
    margin: 20px 0 8px;
    font-weight: normal;
    border-left: 4px solid #f9ac45;
    padding-left: 10px;
}

.static-wrap h3 {
    font-size: 14px;
    color: #482910;
    margin: 14px 0 6px;
}

.static-wrap p {
    font-size: 13px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
}

.static-wrap ul {
    list-style: none;
    margin: 10px 0;
}

.static-wrap ul li {
    font-size: 13px;
    color: #555;
    line-height: 2;
    padding-left: 15px;
    position: relative;
}

.static-wrap ul li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: #f9ac45;
    font-size: 16px;
}

.static-wrap ul li a {
    color: #1e73a9;
}

.static-wrap ul li a:hover {
    text-decoration: underline;
}

.static-wrap strong {
    color: #482910;
    font-size: 13px;
}

.static-wrap a {
    color: #1e73a9;
}

.static-wrap .last-updated {
    font-size: 12px;
    color: #999;
    margin-bottom: 20px;
}

.static-wrap section {
    margin-bottom: 20px;
}

.contact-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.contact-card {
    flex: 1;
    min-width: 200px;
    background-color: #fff8de;
    border: 1px solid #f9ac45;
    border-radius: 6px;
    padding: 20px;
    text-align: center;
}

.contact-card .icon {
    font-size: 28px;
    margin-bottom: 10px;
}

.contact-card h3 {
    color: #7b4f25;
    margin-bottom: 8px;
    font-size: 15px;
}

.contact-card p {
    font-size: 13px;
    color: #555;
    margin: 0;
}

.contact-card a {
    color: #1e73a9;
}

.contact-form {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 13px;
    font-family: "smiley";
    background-color: #fafafa;
    color: #333;
    outline: none;
    transition: border-color .3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #f9ac45;
}

.contact-form textarea {
    height: 120px;
    resize: vertical;
}

.contact-form button {
    align-self: flex-start;
    background-color: #7b4f25;
    color: #fff;
    padding: 10px 30px;
    border-radius: 30px;
    font-size: 14px;
    cursor: pointer;
    border: none;
    font-family: "smiley";
    transition: .3s;
}

.contact-form button:hover {
    background-color: #482910;
}

.about-hero {
    background: linear-gradient(135deg, #482910, #7b4f25);
    border-radius: 6px;
    padding: 30px;
    text-align: center;
    margin-bottom: 20px;
    color: #fff;
}

.about-hero h2 {
    font-size: 24px;
    color: #f9ac45;
    border: none;
    padding: 0;
    margin: 0 0 10px;
}

.about-hero p {
    color: #e8b272;
    font-size: 14px;
    margin: 0;
}

.about-features {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin: 15px 0;
}

.feature-card {
    flex: 1;
    min-width: 180px;
    background-color: #fff8de;
    border: 1px solid #f9ac45;
    border-radius: 6px;
    padding: 18px;
    text-align: center;
}

.feature-card .icon {
    font-size: 26px;
    margin-bottom: 8px;
}

.feature-card h3 {
    color: #7b4f25;
    font-size: 14px;
    margin-bottom: 6px;
}

.feature-card p {
    font-size: 12px;
    color: #777;
    margin: 0;
}

.cookie-section {
    margin-bottom: 20px;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    margin-top: 10px;
}

.cookie-table th {
    background-color: #7b4f25;
    color: #fff;
    padding: 8px 12px;
    text-align: left;
    font-weight: normal;
}

.cookie-table td {
    padding: 8px 12px;
    border-bottom: 1px solid #eee;
    color: #555;
}

.cookie-table tr:nth-child(even) td {
    background-color: #fafafa;
}

@media (max-width:799px) {
    .static-wrap {
        padding: 15px;
    }

    .contact-grid {
        flex-direction: column;
    }

    .about-features {
        flex-direction: column;
    }

    .static-wrap .page-title {
        flex-direction: column;
        gap: 10px;
        padding: 10px;
    }

    .static-wrap .page-title::before {
        display: none;
    }
}