/* Main CSS for Ostsee Fisch Theme */

/* Variables */
:root {
    --color-primary: #1a5b9c;
    --color-secondary: #ffd700;
    --color-accent: #e63946;
    --color-background: #ffffff;
    --color-background-alt: #f8f9fa;
    --color-text: #312783;
    
    --font-heading: 'Citrus Gothic', Arial, sans-serif;
    --font-body: 'NeueHelveticaPro77CondensedBold', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    
    --border-radius: 8px;
    --border-radius-large: 12px;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --box-shadow-hover: 0 8px 16px rgba(0, 0, 0, 0.15);
    
    --transition-speed: 0.3s;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.6;
    color: #1a2530;
    background-color: #eeeeee;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-speed);
}

a:hover {
    color: var(--color-accent);
}

img {
    max-width: 100%;
    height: auto;
}

/* Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

/* Header */
.site-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    padding: 10px 0;
}

.header-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 56px;
    padding: 0 24px;
}

.site-logo {
    flex-shrink: 0;
}

.site-logo img {
    max-height: 48px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Navigation */
.main-nav {
    flex: 1;
}

.main-nav-items {
    display: flex;
    gap: 40px;
    align-items: center;
}

.main-nav-item {
    margin: 0 15px;
}

.main-nav-item a {
    color: #1a2530;
    font-weight: 600;
    font-size: 1.15rem;
    letter-spacing: 0.02em;
    padding: 10px 0;
    position: relative;
    transition: color 0.2s;
}

.main-nav-item a:hover,
.main-nav-item.current-menu-item a {
    color: #1a5b9c;
}

.main-nav-item a:after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 0;
    height: 2px;
    background: #ffd700;
    transition: width 0.3s;
}

.main-nav-item a:hover:after,
.main-nav-item.current-menu-item a:after {
    width: 100%;
}

.hamburger-menu {
    display: none;
    color: #1a2530;
    font-size: 28px;
    cursor: pointer;
}

/* Hero Section */
.ostseefisch-hero img {
    display: block;
    margin: 0 auto 2.5rem auto;
    max-width: 900px;
    width: 100%;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(26,91,156,0.10);
    object-fit: cover;
}

.ostseefisch-hero {
    padding-top: 64px;
    padding-bottom: 64px;
    text-align: center;
}

.ostseefisch-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.ostseefisch-hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    color: #222;
}

/* About Section */
.about-section {
    background-color: var(--color-background-alt);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Product Categories */
.ostseefisch-kategorien {
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.ostseefisch-kategorien h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
}

.ostseefisch-kategorien > div {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
}

/* Product Tiles */
.ostseefisch-kachel {
    display: block;
    width: 260px;
    min-height: 120px;
    padding: 2rem 1.5rem;
    background: #fff;
    border-radius: 16px;
    border: 2px solid #ffd700;
    box-shadow: 0 2px 16px rgba(26,91,156,0.06);
    color: #1a2530;
    font-size: 1.15rem;
    font-weight: 600;
    text-align: center;
    transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}

.ostseefisch-kachel:hover {
    box-shadow: 0 8px 32px rgba(26,91,156,0.13);
    border-color: #1a5b9c;
    transform: translateY(-6px) scale(1.03);
    color: #1a5b9c;
}

.product-tile-image {
    height: 200px;
    overflow: hidden;
}

.product-tile-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform var(--transition-speed);
}

.product-tile:hover .product-tile-image img {
    transform: scale(1.05);
}

.product-tile-content {
    padding: 20px;
}

.product-tile-title {
    font-family: var(--font-heading);
    font-size: 18px;
    margin: 0 0 10px;
}

.product-tile-link {
    color: var(--color-primary);
    font-size: 14px;
    text-decoration: none;
    font-weight: 600;
}

/* Product Modal */
.product-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    overflow-y: auto;
}

.product-modal.active {
    display: block;
}

.product-modal-content {
    background-color: var(--color-background);
    max-width: 800px;
    margin: 50px auto;
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--box-shadow-hover);
}

.product-modal-header {
    background-color: var(--color-primary);
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-modal-title {
    color: white;
    margin: 0;
}

.product-modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.product-modal-body {
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
}

.product-modal-image {
    flex: 0 0 40%;
    padding-right: 20px;
}

.product-modal-info {
    flex: 0 0 60%;
}

.product-description {
    margin-bottom: 20px;
}

.nutritional-values {
    background-color: var(--color-background-alt);
    padding: 15px;
    border-radius: var(--border-radius);
}

.nutritional-value {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    padding-bottom: 5px;
    border-bottom: 1px solid #ddd;
}

.nutritional-value:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

/* Contact Form */
.ostseefisch-kontakt {
    margin: 5rem auto 0 auto;
    max-width: 600px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 32px rgba(26,91,156,0.10);
    padding: 2.5rem 2rem 2rem 2rem;
}

.ostseefisch-kontakt h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.ostseefisch-kontakt form {
    margin: 0;
}

.form-row {
    margin-bottom: 20px;
}

.form-row label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-row input[type="text"],
.form-row input[type="email"],
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    font-size: 16px;
}

.form-row textarea {
    height: 150px;
}

.privacy-checkbox {
    display: flex;
    align-items: flex-start;
}

.privacy-checkbox .wpcf7-list-item {
    margin: 0;
}

.privacy-checkbox input[type="checkbox"] {
    margin-right: 10px;
    margin-top: 5px;
}

.button {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--color-primary);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color var(--transition-speed);
}

.button:hover {
    background-color: #0e4a8b;
}

/* Footer */
.site-footer {
    background: #f8f9fa;
    color: #1a2530;
    padding: 40px 0 0 0;
    border-top: 1px solid #e5e5e5;
    font-size: 0.98rem;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-info {
    flex: 0 0 30%;
}

.footer-logo {
    margin-bottom: 15px;
}

.footer-nav {
    flex: 0 0 30%;
}

.footer-nav-title {
    color: white;
    margin-bottom: 15px;
}

.footer-nav-items {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-nav-item {
    margin-bottom: 10px;
}

.footer-nav-item a {
    color: #1a2530;
    font-weight: 500;
    transition: color 0.2s;
}

.footer-nav-item a:hover {
    color: #1a5b9c;
}

.footer-contact {
    flex: 0 0 30%;
}

.footer-contact-title {
    color: white;
    margin-bottom: 15px;
}

.footer-contact-info {
    margin-bottom: 5px;
}

.footer-bottom {
    border-top: 1px solid #e5e5e5;
    margin-top: 32px;
    padding: 18px 0 0 0;
    text-align: center;
    color: #888;
    font-size: 0.92rem;
}

/* Accessibility */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    clip-path: none;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-weight: 700;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

/* Buttons */
.button, .hero-button, .elementor-button {
    background: #1a5b9c;
    color: #fff;
    border-radius: 6px;
    padding: 12px 32px;
    font-weight: 700;
    font-family: var(--font-heading);
    text-transform: uppercase;
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    box-shadow: 0 2px 8px rgba(26,91,156,0.08);
    border: none;
}

.elementor-button span {
    position: relative;
    top: 1px;
}


.button:hover, .hero-button:hover, .elementor-button:hover {
    background: #174a7c;
    box-shadow: 0 6px 24px rgba(26,91,156,0.12);
    transform: translateY(-2px) scale(1.03);
}

/* Section & Grid */
.section, .elementor-section {
    padding: 80px 0;
    background: #fff;
}

/* Kacheln / Cards */
.ostseefisch-kachel, .product-tile {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: box-shadow 0.3s, transform 0.3s;
    border: none;
}

a .product-tile:hover,
.product-tile.clickable:hover {
    box-shadow: 0 8px 24px rgba(26,91,156,0.10);
    transform: translateY(-4px) scale(1.02);
}

.elementor-widget-container {
    box-shadow: none;
    border-radius: 0;
    background: none;
    transition: none;
}

img, h1, h2, h3, h4, h5, h6, p, div, 
.elementor-widget-heading,
.elementor-widget-text-editor,
.elementor-widget-image,
.elementor-heading-title,
.elementor-text-editor {
    transform: none;
    transition: none;
}

img:hover, h1:hover, h2:hover, h3:hover, h4:hover, h5:hover, h6:hover, p:hover, 
.elementor-widget-heading:hover,
.elementor-widget-text-editor:hover,
.elementor-widget-image:hover,
.elementor-heading-title:hover,
.elementor-text-editor:hover {
    transform: none;
    box-shadow: none;
}

/* OST-Teaser Grid */
.e-grid .ost-teaser {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.e-grid {
    align-items: stretch;
}

.elementor-element.ost-teaser.e-con {
    display: flex;
    flex-direction: column;
    align-self: stretch;
    height: 100%;
}

.ost-teaser .elementor-widget-button {
    margin-top: auto;
}

.ost-teaser .elementor-widget-text-editor {
    flex-grow: 1;
}

.elementor-element.e-grid > .elementor-element.ost-teaser {
    height: 100%;
    align-self: stretch;
}

/* OST-Teaser Responsive Eigenschaften */
.ost-teaser {
    box-sizing: border-box;
}

/* Mindestbreite für alle Teaser-Container */
.elementor-element.ost-teaser.e-con {
    min-width: 350px !important;
}

/* Standard-Texte in Elementor Widgets - Dunkelblau */
.elementor-widget-container p {
    color: var(--color-text) !important; /* #312783 - Dunkelblau */
}

/* Responsive Teaser Grid - Spaltensteuerung */
.responsive-teaser-grid {
    display: grid !important;
    column-gap: 20px !important; /* Horizontaler Abstand bleibt */
    row-gap: 60px !important; /* Vertikaler Abstand: 20px + 40px */
    width: 100% !important;
}

/* Eine Spalte bis 800px - Teaser mindestens 350px breit */
@media (max-width: 799px) {
    .responsive-teaser-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Zwei Spalten ab 800px - 2x350px + Abstände passen */
@media (min-width: 800px) and (max-width: 1199px) {
    .responsive-teaser-grid {
        grid-template-columns: 1fr 1fr !important;
    }
}

/* Drei Spalten ab 1200px - 3x350px + Abstände passen */
@media (min-width: 1200px) {
    .responsive-teaser-grid {
        grid-template-columns: 1fr 1fr 1fr !important;
    }
}

/* Animationen */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
}
.fade-in.visible {
    opacity: 1;
    transform: none;
}

/* Responsive */
@media (max-width: 900px) {
    .container { padding: 0 10px; }
    .header-container { flex-direction: column; gap: 24px; }
    .main-nav-items { flex-direction: column; gap: 0; background: #fff; position: absolute; top: 60px; right: 0; left: 0; display: none; }
    .main-nav-items.active { display: flex; }
    .hamburger-menu { display: block; }
    .main-nav { position: relative; }
    .ostseefisch-kategorien > div { gap: 1.2rem; }
}
@media (max-width: 600px) {
    h1 { font-size: 2rem; }
    .section, .elementor-section { padding: 36px 0; }
    .ostseefisch-hero img { max-width: 100%; border-radius: 10px; }
    .ostseefisch-hero { padding-top: 32px; padding-bottom: 32px; }
    .ostseefisch-kategorien > div { flex-direction: column; gap: 1rem; }
    .ostseefisch-kachel { width: 100%; min-width: 0; }
    .ostseefisch-kontakt { padding: 1.2rem 0.5rem; }
}

/* Contact Form 7 Styling */
.contactform .wpcf7-form {
    max-width: 600px;
}

.contactform input[type="text"],
.contactform input[type="email"],
.contactform input[type="tel"],
.contactform input[type="url"],
.contactform input[type="file"],
.contactform textarea,
.contactform select {
    width: 100%;
    font-size: 1.25rem;
    background-color: #ffffff;
    border: 1px solid #000000;
    border-radius: 5px;
    padding: 12px 16px;
    margin-bottom: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
    z-index:3;
    position: relative;
}

.contactform textarea{
    margin-bottom: 10px;
}

.contactform input:focus,
.contactform textarea:focus,
.contactform input[type="file"]:focus {
    outline: none;
    border-color: #312783;
    box-shadow: 0 0 5px rgba(49, 39, 131, 0.3);
}

.contactform textarea {
    min-height: 120px;
    resize: vertical;
}

.contactform input[type="file"] {
    padding: 10px 16px;
    cursor: pointer;
}

.contactform input[type="file"]::-webkit-file-upload-button {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 3px;
    padding: 6px 12px;
    margin-right: 12px;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.9rem;
}

.contactform input[type="file"]::-webkit-file-upload-button:hover {
    background-color: #e9ecef;
}

.contactform input[type="submit"] {
    background-color: #312783;
    color: #ffffff;
    border: none;
    border-radius: 20px;
    padding: 14px 60px;
    font-size: 20px;
    font-weight: 500;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    box-shadow: none;
    text-decoration: none;
    display: inline-block;
    line-height: 1;
    text-align: center;
}

.contactform input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(26, 91, 156, 0.3);
}

.contactform label {
    display: block;
    font-weight: 400;
    margin-bottom: 0px;
    color: #000000;
}
.contactform p {
    color: #000000!important;
}

.contactform .wpcf7-not-valid-tip {
    color: #E51A38;
    font-size: 0.9rem;
    background-color: white;
    padding: 3px;
    width: 50%;
    border: 1px solid black;
    margin-top: -18px;
    margin-left: 10px;
    text-align: center;
    border-radius: 0 0 10px 10px;
}
.wpcf7-checkbox + .wpcf7-not-valid-tip {
    margin-top: 0;
}
.contactform .center {
  text-align: center;
  width: 100%;
  display: inline-block;
}
.contactform .wpcf7-spinner {
  display: block;
}


/* Contact Form 7 Feedback Messages */
.contactform .wpcf7-response-output {
    border-radius: 5px;
    padding: 15px;
    margin: 15px 0;
    border: 2px solid #E51A38 !important;
    background-color: #fdf2f2;
    color: #312783;
    font-size: 1rem;
}

.contactform .wpcf7-form.sent .wpcf7-response-output {
    background-color: #f0f9f0;
}

.contactform .wpcf7-validation-errors,
.contactform .wpcf7-mail-sent-ng,
.contactform .wpcf7-mail-sent-ok {
    border-radius: 5px;
    padding: 15px;
    margin: 15px 0;
}

.contactform .wpcf7-mail-sent-ok {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

/* Contact Form 7 Info Icons */
.contactform .wpcf7-form-control-wrap.field-with-info,
.contactform .wpcf7-form-control-wrap:has(.field-with-info) {
    position: relative;
}

/* Anklickbares Info-Icon */
.contactform .field-info-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #E51A38;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 20px;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    text-shadow: 0 0 1px rgba(0,0,0,0.5);
    z-index: 10;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    outline: none;
}

.contactform .field-info-icon:hover {
    background-color: #c41530;
    transform: translateY(-50%) scale(1.1);
}

/* Icon-Größe - perfekt kreisrund */
.contactform .field-info-icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    aspect-ratio: 1/1; /* Garantiert kreisrunde Form */
}

/* Für kleinere Bildschirme kompakte Icons */
@media (max-width: 768px) {
    .contactform .field-info-icon {
        width: 26px;
        height: 26px;
    }
}

/* Info-Layer */
.contactform .field-info-layer {
    position: absolute;
    right: 0;
    top: calc(100% + 5px);
    background: white;
    border: 1px solid #000;
    border-radius: 10px;
    padding: 12px 15px;
    max-width: 300px;
    min-width: 200px;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #333;
    z-index: 15;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.contactform .field-info-layer.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Padding rechts für das Icon */
.contactform .wpcf7-form-control-wrap.field-with-info .wpcf7-form-control,
.contactform .wpcf7-form-control.field-with-info {
    padding-right: 45px !important;
}

/* Close Button im Info-Layer */
.contactform .field-info-close {
    position: absolute;
    top: 5px;
    right: 8px;
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    color: #666;
    line-height: 1;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contactform .field-info-close:hover {
    color: #E51A38;
}

.contactform select {
    min-height: 48px;
    height: 48px;
    -webkit-appearance: menulist-button;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    color: #000000;
}
.contactform .selectbox .wpcf7-form-control-wrap::after {
    content: '▼';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%) scale(65%);
  }

/* Contact Form 7 Drag & Drop File Upload */
.cf7-drag-drop-zone {
    position: relative;
    border: 2px dashed #ddd;
    border-radius: 8px;
    padding: 40px 20px;
    text-align: center;
    background-color: #fafafa;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 10px 0;
}

.cf7-drag-drop-zone:hover {
    border-color: #312783;
    background-color: #f5f5ff;
}

.cf7-drag-drop-zone.cf7-dragover {
    border-color: #312783;
    background-color: #e8ecff;
    transform: scale(1.02);
}

.cf7-drop-text {
    pointer-events: none;
}

.cf7-drop-icon {
    margin-bottom: 10px;
    opacity: 0.6;
}

.cf7-drop-icon img {
    width: 60px;
    height: auto;
    max-height: 60px;
    object-fit: contain;
}

.cf7-drop-main {
    font-size: 1.2rem;
    font-weight: 600;
    color: #312783;
    margin-bottom: 5px;
}

.cf7-drop-sub {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

.cf7-drag-drop-zone input[type="file"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cf7-file-info {
    margin-top: 15px;
    text-align: left;
}

.cf7-selected-files {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 15px;
    font-size: 0.9rem;
}

.cf7-selected-files strong {
    color: #312783;
    display: block;
    margin-bottom: 8px;
}

.cf7-selected-files ul {
    margin: 0;
    padding-left: 20px;
}

.cf7-selected-files li {
    margin: 3px 0;
    color: #555;
}


@media (max-width: 768px) {
    .order3{
        order: 3!important;
    }
}
ul {
    list-style-position: inside;
}

/* Contact Form 7 Success Message Styling */
.cf7-success-message {
    text-align: center;
    padding: 40px 20px;
    background: #f8f9fa;
    border: 2px solid #28a745;
    border-radius: 8px;
    margin: 20px 0;
}

.cf7-success-message h2 {
    color: #28a745;
    margin-bottom: 15px;
    font-size: 1.5em;
    font-weight: 600;
}

.cf7-success-message p {
    color: #333;
    font-size: 1.1em;
    line-height: 1.6;
    margin: 0;
}